form_without_button.html 332 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Form submission without button test</title>
  6. </head>
  7. <body>
  8. <form action="basic_form_post.php" method="POST">
  9. <input name="first_name" type="text" value="not set">
  10. <input name="last_name" type="text" value="not set">
  11. </form>
  12. </body>
  13. </html>