nochmal Error No.: 1064, bin am verzweifeln

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • nochmal Error No.: 1064, bin am verzweifeln

    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:

    PHP Code:
    $result mysql_query("INSERT INTO $tabla(title, introtext, fulltext) 
    VALUES('sdsdsd', 'xcxcxcx', 'vbvbvb')"
    ,$link); 
    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:

    PHP Code:
    $result mysql_query("INSERT INTO $tabla(title) VALUES('vbvbvb')",$link); 
    funktioniert es. ich habe die gleiche syntax in anderen scripten und da funktioniert es ohne probleme.

    hat jemand einen tip für mich?

  • #2
    Fulltext ist vielleicht ein reserviertes Wort. `hilft.

    Comment


    • #3
      wow, wahnsinn, dass war´s muchas gracias amigo

      Comment

      Working...
      X