Advertisement
Guest User

Untitled

a guest
Jun 1st, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> What's your name? </title>
  4. </head>
  5. <body>
  6. <h1> What's your name? </h1>
  7. <h3> Writing a form for user input </h3>
  8. <form method = "post"
  9. action="hiUser.php">
  10. Please type your name:
  11. <input type="text"
  12. name="userName"
  13. value ="">
  14. <br>
  15. <input type="submit">
  16. </form>
  17. <a href="index.php"> Main page </a>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement