This is my form:
<form name='form_update' method='post' id="registerUser" action='update.php'>
<input type='text' class='form-control' name='nombre' value=<?=$nombre; ?> />
<input type='text' class='form-control' name='ne' value=<?=$ne; ?> />
<input type='submit' value='Guardar Edición' class='btn btn-info' data-toggle='confirmation' data-title='Proceeder con esta Acción?' />
</form>
How can I add a second submit that sent me to a second address something like action='insert.php'
The intention is that when you finish editing some data as they appear in a form and you are satisfied with those changes you can have a button next to the update to save the information in a second table.