Form and Spelling Validation -
(Page 11 of 14 )
The first thing we need is a way to take in the text from the user that will spell checked. For this, we will just use a basic form. Nothing fancy here, just standard HTML.
<html> <head> <title>A Basic Form</title> </head> <body> <form method="POST" action="spell.php"> <textarea name="text" cols="80" ROWS="12"></textarea><br /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html> |
We have saved this as spell.html.
Next: >>
More Miscellaneous Articles
More By Matt Wade