I have two submit buttons in a form. How do I determine which one was hit serverside?
|
If you give each one a name, the clicked one will be sent through as any other input.
|
|||
|
|
You can give each input a different value and keep the same name:
Then in the code check to see which was triggered:
The only problem with that is you tie your logic to the text within the input. You could also give each one a unique name and just check the $_POST for the existence of that input:
And in the code:
|
|||||||
|
|
This is extremely easy to test
Just put that in an HTML page, click the buttons, and look at the URL |
|||
|
|
|
RoBorg is right, but be careful of something - at least IE6 and Firefox3 behave differently when you hit "Enter" to submit instead of clicking a submit button. FF3 seems to send the name/value pair of the first submit input along with the rest of the form, while IE6 doesn't send any of the submit inputs. |
|||
|
|
|
I think you should be able to read the name/value in your GET array. I think that the button that wasn't clicked wont appear in that list. |
|||||||||||||||||||
|