• Hi!

    I need 2 submit buttons on same form

    One button should allowe me to save my selected fealds to the list and alowe me to stay on the same page and add other item to the same list.

    Second Button will send this list to my email

    Thank you

Viewing 1 replies (of 1 total)
  • A form can have multiple submit buttons, but that won’t help you here, because a form tag can have only one action parameter. The action parameter is the url to which the form’s data is sent. It can be the url of the current page.

    The page logic needs to inspect the parameters passed in the REQUEST array and decide what to do. If there are no passed parameters then the form has not been filled in. If there are, then a submit was pressed then the code must branch and do both the save task and the send email task.

    You can have two forms on the same page, each with its own submit button, but it sounds like that’s not suitable for you here.

Viewing 1 replies (of 1 total)
  • The topic ‘Submit Button Aditional functions’ is closed to new replies.