UnoDosTres
Erfahrenes Mitglied
Hi,
ich bekomme immer eine Fehlermeldung. Aber ich raffe nicht wieso!!
Fehlermeldung:
Es traten Probleme auf. Beitrag konnte nicht gespeichert werden 1064: 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 '1' at line 1
Ich fende den Fehler nicht. Hilfe bitte!
ich bekomme immer eine Fehlermeldung. Aber ich raffe nicht wieso!!
PHP:
if ($action=="updatedata") // Änderungen Speichern
{
$details = $HTTP_POST_VARS["details"];
$status = $HTTP_POST_VARS["status"];
$datum = $HTTP_POST_VARS["datum"];
$headline = $HTTP_POST_VARS["headline"];
$textB = str_replace("\r\n","<br>",$details); // Für den Zeilenumbruch
$aendern = "UPDATE termine SET datum = '$datum', headline = '$headline', status = '$status', text = '$textB' WHERE id = '$id'";
$update = mysql_query($aendern) or die(mysql_error());
if (mysql_query ($update)) {
echo "<font color=\"#000000\" size=\"2\" face=\"Verdana, Arial, Helvetica, sans-serif\"> \n";
echo "Die Änderungen wurden erfolgreich gespeichert.</font><br> \n";
}
else {
print ("Es traten Probleme auf. Beitrag konnte nicht gespeichert werden " );
echo mysql_errno() . ": " . mysql_error(). "\n";
}
}
Fehlermeldung:
Es traten Probleme auf. Beitrag konnte nicht gespeichert werden 1064: 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 '1' at line 1
Ich fende den Fehler nicht. Hilfe bitte!