Textarea Element in PHP
In this lesson, we will work with the
textarea
element, which is a multi-line input field.
Here is an example of using this tag in a form:
<form action="" method="GET">
<textarea name="test"></textarea>
<input type="submit">
</form>
Ask the user to leave feedback on the site. After submitting the form, display this feedback on the screen.