How to replace the submit button with a link without using javascript ? is there any way to add the submit attribute to a link ? because the form will not be sent by a simple li
You can not submit a form using an tag alone. You will need some type of javascript to assist, if you insist on using the
tag:
or
or super hack:
Submit the Form
, then on backendPage.php you can use $_GET
requests to process information, and redirect the visitor to the intended page. But that's a horrible idea haha