This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
PHP Form Handling
A Simple HTML Form USING $_GET
<form action="welcome_get.php" method="get">
Name: <input type="text" name="name"><br>
E-mail: <input type="text" name="email"><br>
<input type="submit">
</form>
- Think SECURITY when processing PHP forms!
- The example on the previous page does not contain any form validation, it just shows how you can send and retrieve form data.
- Learn more about processing PHP forms with security in mind in the Form Validation chapter.
- Proper validation of form data is important to protect your form from hackers and spammers!