Horje

How to add A form with two submit buttons

The first submit button submits the form data to "action_page.php", and the second submits to "action_page2.php"
index.html
Example: HTML
 <form action="/action_page.php" method="get">
  First name: <input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>
  <button type="submit">Submit</button><br>
  <button type="submit" formaction="/action_page2.php">Submit to another page</button>
</form> 

Output should be:

How to add A form with two submit buttons




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Attribute
Uploaded by:
Admin