:D Just to feedback with simple code how differentiate events for two submit buttons
in submit action you must insert event switcher and insert php code that uses different names off buttons
in submit action you must insert event switcher and insert php code that uses different names off buttons
<?php
if ($_POST['enviar'])
{
return 'success';
}
elseif($_POST['guardar'])
{
return 'fail';
}
?>