Ich möchte aus einer Tabelle werte löschen deren wert kleiner als ein anderer ist (gueltig = ein unix timestamp wert).
egal wie ich es biege und mache ich bekomme immer nur
"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 'WHERE gueltig < 1173366476' at line 1"
PHP-Code:
$timer = time();
$dbw=mysql_query("Delete ttl_fahrzeuge WHERE gueltig < ".$timer."") OR die(mysql_error());
if(mysql_result($dbw,0) == 0) {..........Ereignisse wenn kein Eintrag vorhanden ......
"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 'WHERE gueltig < 1173366476' at line 1"
Kommentar