I'm new to using HTML forms. I've got one working using:
This runs the php code when a submit button is hit. I want to use several buttons, with each one executing a different php file. Is there a simple way to do that? I've done a search, but I've only found forms with a single "action" parameter. I appreciate any & all help.
Code:
<form name="form1" method="post" action="delete_in_form.php">
This runs the php code when a submit button is hit. I want to use several buttons, with each one executing a different php file. Is there a simple way to do that? I've done a search, but I've only found forms with a single "action" parameter. I appreciate any & all help.