Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '), reminder_time = 60, date_end = DATE_ADD(date_end, INTERV' at line 1
Pego el código
<?php
include('i_entrada.php');
include('common.php');
$alert_tipo = get_param("alert_tipo");
$alert_id = get_param("alert_id");
$alert_pospuesto = get_param("alert_posponer");
$alert_user = get_param("alert_user");
$err = 0;
echo "<h1>Posponer ".$alert_tipo."</h1>";
if (isset($alert_id)) {
$db = conectar();
if ($alert_tipo == "Llamada") {
$sql = "UPDATE calls SET date_start = DATE_ADD(date_start, INTERVAL ".$alert_pospuesto." SECOND),
reminder_time = '60',
date_end = DATE_ADD(date_end, INTERVAL ".$alert_pospuesto." SECOND)
WHERE id = '".$alert_id."' AND assigned_user_id = '".$alert_user."'" ;
} else {
$sql = "UPDATE meetings SET date_start = DATE_ADD(date_start, INTERVAL ".$alert_pospuesto." SECOND),
reminder_time = 60,
date_end = DATE_ADD(date_end, INTERVAL ".$alert_pospuesto." SECOND)
WHERE id = '".$alert_id."' AND assigned_user_id = '".$alert_user."'" ;
};
if (!mysql_query($sql,$db)) {
die('Error: ' . mysql_error());
};
echo "<h3>Su ".$alert_tipo ." fue pospuesta satisfactoriamente!</h3>";
}
?>
Gracias...