* [[Getting Started|Back to Getting Started Overview]]
* [[Editing files|(previous) Getting Started Part 4: Editing files]]
====== Getting Started Part 5: Basic HTML Form ======
===== 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 :)
* [[Getting Started Part 6|(next) Getting Started Part 6: What's Next]]