Advertisement
Guest User

Untitled

a guest
Jul 24th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <form method="get" action="processor.php">
  2. <input type="text" name="firstName">
  3. <input type="text" name="lastName">
  4. <input type="submit" value="Submit">
  5. </form>
  6.  
  7. <!--Assume anything above this is part of your HTML document-->
  8. <!--Assume anything below this is part of processor.php-->
  9. <?php
  10. echo $_GET['firstName'];
  11. echo $_GET['lastName'];
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement