Guest User

Untitled

a guest
Jul 16th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <html>
  2.  
  3. <body>
  4.  
  5. <form action="index.php" method="_POST">
  6.  
  7. <p>First Name:</p>
  8. <input type="text" name="firstname" value="First Name" style="width:200px;">
  9.  
  10. <p>Last Name:</p>
  11. <input type="text" name="lastname" value="Last Name" style="width:200px;">
  12.  
  13. <p>Message:</p>
  14. <input type="textarea" name="message" value="Message" style="width:200px; height:100px;">
  15.  
  16. <p></p>
  17. <input type="submit" name="submit" value="Submit">
  18.  
  19. </form>
  20.  
  21. </body>
  22.  
  23. </html>
  24.  
  25.  
  26. <?php
  27.  
  28. var_dump($_POST)
  29.  
  30.  
  31.  
  32.  
  33. ?>
Add Comment
Please, Sign In to add comment