Hi Is there a way in PHP to use a 2 submit buttons on one form? So one button goes to script one and two button script two?
Cheers
Nick
You can use any number of buttons on a form, but they will all go to the same place. However, that's no problem, because you can name all the buttons differently and thus your script can decide what to do based on which button was clicked.
🙂