0 votes
in PHP by
Is it possible to submit a form with a dedicated button?

1 Answer

0 votes
by
It is possible to use the document.form.submit() function to submit the form. For example: <input type=button value="SUBMIT" onClick="document.form.submit()">
...