In this tutorial we will look at PHP forms and form handling. We will use the PHP $_GET and $_POST variables to retrieve information from the HTML form. You use forms to get user input.
<?php
<form action="test.php" method="post">
........
</form>
?>