This post explains you how to use two or more submit buttons in a single HTML form using PHP technology. HTML Part:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<html> <head><title>Two Submit buttons in a Single Form!</title></head> <body> <form action="" method="post"> <h2>Two Submit Button with PHP</h2> <input type="submit" name="submit1" value="btn1" /> <input type="submit" name="submit2" value="btn2" /> </form> </body> </html> |
See the