Hallo zusammen !
Seit 2 Tagen plagt mich ein Problem, welches ich einfach nicht gelöst bekomme.
Folgende Fehlermeldung:
An folgender Stelle:
Anmerkung: $tempumfrage ist nich = ''. Wenn ich es mit echo ausgebe, steht dort der richtige Wert.
Wo genau liegt hier das Problem?
Bin ich blind oder seh ich den Syntax error nicht?
Bitte helft mir weiter!
Mfg
w4rheart
Seit 2 Tagen plagt mich ein Problem, welches ich einfach nicht gelöst bekomme.
Folgende Fehlermeldung:
Query 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 'WHERE Umfrage=''' at line 1
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /../xxx on line 22
Query 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 'SET Autoren = ' | ' WHERE Umfrage=''' at line 1
Query 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 'WHERE Umfrage=''' at line 1
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /../xxx on line 22
Query 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 'SET Autoren = ' | ' WHERE Umfrage=''' at line 1
Query 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 'WHERE Umfrage=''' at line 1
PHP-Code:
$id= $user_info['id'];
$mysql = mysql_query("SELECT Autoren FROM $mysqltabelle WHERE Umfrage='$tempumfrage'") or printf( "Query error: %s", mysql_error() ); ;
list($Autoren) = mysql_fetch_row($mysql); //Line 22
$tempadd = $Autoren." | ".$id;
$query = "UPDATE $mysqltabelle SET Autoren = '$tempadd' WHERE Umfrage='$tempumfrage'";
$results = mysql_query( $query )
or printf( "Query error: %s", mysql_error() );
Wo genau liegt hier das Problem?
Bin ich blind oder seh ich den Syntax error nicht?
Bitte helft mir weiter!
Mfg
w4rheart
Kommentar