Datei mit PHP in MySQL Datenbank importieren

  • Hi,

    ich hab ein Problem. Ich hab folgendes MySQL Script, das eine Beispieldatei in die Datenbank "beispiele" einträgt.

    hier ist mein Code:


    Und dann beim Ausführen kommt folgender ERROR:

    Verbindung wurde aufgebaut
    Die Datenbank ''beispiele'' wurde ausgewählt
    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 'desc,cat) VALUES (3,Yo,blabla,Man)' at line 1

    Kann mir jemand helfen please?? :?

    Gruss

    K.C.

    Gruss

    K.C.

  • Yo Chris,

    checksch das nonig?

    Also,

    dini function isch falsch du dubbel!!

    so isch es korrekt mannnn:


    Code
    function    insertIntoDB($table, $toAdd) 
    { 
      $fields = implode(array_keys($toAdd), '`,`'); 
      $values = implode(array_values($toAdd), '\',\''); 
     
      $q = 'INSERT INTO `'.$table.'` (`'.$fields.'`) VALUES (\''.$values.'\')'; 
      $res = mysql_query($q)OR die(mysql_error()); 
     
      return    true; 
    }

    so jetzt söts korrrrekt si mannn!!


    bliib cool du dubbel :lol:


    gruess

    B.I.G.