With submit buttons, using php on the form processing page, can I capture the button value or am I limited to the name only? If I can capture the value, what's the syntax?? Thanks much!
your page <input type=button name="button1" value="value1"> php page $_POST["button1"] will return value1 if you use GET to submit form then use $_GET["button1"]