Test Get
Study PHP at W3schools.com
<?php
echo "Study " . htmlspecialchars($_GET['subject']) . " at " . htmlspecialchars($_GET['web']);
?>
- Think SECURITY when processing PHP forms!
- The example above 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!