EGJSoldier
Erfahrenes Mitglied
Hallo Zusammen,
ich versuche schon seit einiger Zeit etwas in die Datenbank zu schreiben. Das fuktioniert irgendwie nicht. Wo liegt hier der Fehler:
Die Fehlermeldung lautet:
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 '¼nf) VALUES ('50', '60', '70', '80', '90')' at line 1
Was da jetzt selber nicht mehr weiter. Hoffe ihr könnt mir helfen.
MfG
EGJSoldier
ich versuche schon seit einiger Zeit etwas in die Datenbank zu schreiben. Das fuktioniert irgendwie nicht. Wo liegt hier der Fehler:
PHP:
<?php
$verbindung=mysql_connect("localhost","root","") or die
("Keine Verbindung moeglich") ;
mysql_select_db("portfolio") or die
("Die Datenbank existiert nicht");
$al='50';
$a2='60' ;
$a3='70' ;
$a4='80' ;
$a5='90' ;
$eintrag = "INSERT INTO test (eins, zwei, drei, vier, fünf) VALUES ('$al', '$a2', '$a3', '$a4', '$a5')";
mysql_query($eintrag) ;
mysql_close() ;
?>
Die Fehlermeldung lautet:
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 '¼nf) VALUES ('50', '60', '70', '80', '90')' at line 1
Was da jetzt selber nicht mehr weiter. Hoffe ihr könnt mir helfen.
MfG
EGJSoldier