I am trying to get a form to submit to a mysql database. I can get the text boxes to submit
But I can't figure out how to get a text area to submit
Any help is appriciated. Sorry if this is a stupid question.
Code:
<form action="insert.php" method="post">
Firstname: <input type="text" name="firstname" />
Lastname: <input type="text" name="lastname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
But I can't figure out how to get a text area to submit
Code:
<textarea rows="20" cols="50"> The cat was playing in the garden. </textarea>
Any help is appriciated. Sorry if this is a stupid question.







