The php page is called page.php; this pages has 2 submit forms on it: form1 and form2. When one of the form's submit button is pressed what in the HTML header with identify which form was submitted?
|
I don't believe that it does post any identification. The easiest way to have your code know which form posted is to put a hidden field in each form identifying the form like this:
|
|||||
|
|
As mentioned in che's comment on Jacob's answer:
And then in your form handling script:
This is what I use when not submitting forms via ajax. |
|||
|
|
|
What about the I would have guesssed that you could specify a different Also, +1 to adding a |
|||
|
|
|
the way "rpflo" uses does not identify forms. the there are IMHO two reasonable ways to identify two forms on one page.
first is via 'action' attribute by adding a GET variable in to it, like
then you have $_POST['form1']['first_name'] and so on.. |
|||
|
|