Skip to content
Advertisement

multiple buttons on a form

I have a clear button that I want to tie into some php coding. how do I detect if the clear button is pressed. When the user press clear, i’m going to have it update a sql table to clear out entries. but first I need to know when the button is pressed.

JavaScript

Advertisement

Answer

You check the post or get data from your form, using the name of the button:

JavaScript

PHP (after submission):

JavaScript

Alternatively, you have two buttons with the same name, which both submit your form, and if/else their values:

JavaScript

PHP (after submission):

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement