====== Guides: Web server: Part 5 ======
* [[:guides/webserver|Back to Guides: Webserver]]
* [[:guides/webserver/part4|Back to Guides: Webserver Part 4]]
===== Creating a basic HTML form =====
Create a new file on your server called ''form.php'' and enter this code. Visit it in your browser and see the result.
==== Adding some PHP code to dump the form conents ====
";
print_r($_REQUEST);
echo "";
?>
==== Full working example ====
===== Error reporting =====
Add this to the very top of your file to enable error reporting and see how that changes the output of your ''form.php'' file.
**Note:** We'll start with this, then explain how to make it not as full-of-errors :)
* [[Guides/Webserver/Part6|(next) Webserver Part 6: What's Next]]