vividtea

HTML Form with POST

Sep 8th, 2025
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.24 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.    <head>
  4.       <title>simple form</title>
  5.    </head>
  6.    <body>
  7.       <form method="POST" action="process.php">
  8.          <input name="firstName">
  9.          <input type="submit">
  10.       </form>
  11.    </body>
  12. </html>
Advertisement
Add Comment
Please, Sign In to add comment