hallo leute, ich werde echt noch verrückt. bekommen folgende fehlermeldung mit einem script, dass in anderen scripten immer functioniert:
wenn ich folgende zeile eingebe:
bekomme ich folgenden fehlercode:
Error No.: 1064
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 'fulltext) VALUES('sdsdsd', 'xcxcxcx', 'vbvbvb')' at line 1
wenn ich aber so mache:
funktioniert es. ich habe die gleiche syntax in anderen scripten und da funktioniert es ohne probleme.
hat jemand einen tip für mich?
wenn ich folgende zeile eingebe:
PHP Code:
$result = mysql_query("INSERT INTO $tabla(title, introtext, fulltext)
VALUES('sdsdsd', 'xcxcxcx', 'vbvbvb')",$link);
Error No.: 1064
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 'fulltext) VALUES('sdsdsd', 'xcxcxcx', 'vbvbvb')' at line 1
wenn ich aber so mache:
PHP Code:
$result = mysql_query("INSERT INTO $tabla(title) VALUES('vbvbvb')",$link);
hat jemand einen tip für mich?
Comment