I'm new to PHP.I'm trying to do something very simple,I have tried to search on google but still i'm not understanding why its not working. I'm trying to send information through a url, and having a script pick it up using the $_GET super global.
This is FORM.php script:
<form action="home.php" method="get"> Email:<input type="text" name="email"/> </form>
This is the home.php script:
<?php echo $_GET['email']; ?>
This yields a blank page.but URL is displaying that email has been sent. Thanks for taking the time to read through this!Any help will be appreciated.