Using multiple submit buttons on a single form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nilanjan001
    New Member
    • May 2012
    • 3

    Using multiple submit buttons on a single form

    How can I send data from a form using GET or POST method but not using 'form action' property? If there are two or more submit buttons in any form then what is the way to redirect into two or more different php pages in response of each submit button?
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    How can I send data from a form using GET or POST method but not using 'form action' property
    not at all if you want to use a form submit.

    you can only do so by using AJAX (which need the data to be given), but then you must not use submit buttons (and without JS it will fail miserably)

    Comment

    Working...