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
Welcome
Your email address is:
Welcome <?php echo $_GET["name"]; ?><br>
Your email address is: <?php echo $_GET["email"]; ?>
- 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!