voy poner mas info a ver si notan algun error...
Código PHP:
<?php
//error_reporting(0);
if (empty($_POST['rfc_1']) or empty($_POST['des_1']) or empty($_POST['ingreso']))
{
//echo "<body onload=alerta2()> ";
}
else
{
include ("dba.php");
mysql_query("update Eve_Dat set e_rfc='".$_POST['rfc_1']."', e_ema='".$_POST['ema_1']."', e_tel='".$_POST['tel_1']."', e_cel='".$_POST['cel_1']."', e_desc='".$_POST['des_1']."', e_sal='".$_POST['sal_1']."', e_sta='".$_POST['pag_1']."', e_mon='".$_POST['mon_1']."', e_fech='".$_POST['ingreso']."' where id_e='".$_POST['id_h']."'");
//echo "<body onload=alerta()> ";
echo mysql_error();
}
?>