Working with forms in PHP - Textareas
(Page 6 of 7 )
Well, guess what? Textareas are handled in the exact same way as these other elements are. So, let's just dive right in. In form.html:
<TEXTAREA name="mytextarea" rows="4" cols="30"></TEXTAREA><BR> |
and in form.php:
echo "<BR>In the textarea, you typed: " . $_POST['mytextarea'] . "\n"; |
Next: Conclusion >>
More Miscellaneous Articles
More By Matt Wade
|
| · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | · | | | | |
|