Fehler beim Database erstellen

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Fehler beim Database erstellen

    Hy...

    Wer kann mir helfen? Ist bestimmt nur ein kleiner Fehler, komme aber nicht weiter. Habe folgende PHP Datei zum erstellen einer Database:

    <?php
    include("config.php");
    mysql_connect($conf['mysql_host'], $conf['mysql_user'], $conf['mysql_pass']);
    mysql_query("CREATE DATABASE " . $conf['mysql_db']);
    mysql_select_db($conf['mysql_db']);
    print "If you see any errors, you have not modyfied the config.php correctly<br><br>";
    mysql_query("
    CREATE TABLE sites (
    ID int(11) NOT NULL auto_increment,
    mail text NOT NULL,
    name text NOT NULL,
    title text NOT NULL,
    pass text NOT NULL,
    banner text NOT NULL,
    banner_width int(3) NOT NULL default '468',
    banner_height int(2) NOT NULL default '60',
    url text NOT NULL,
    accepted enum('no','yes') NOT NULL default 'no',
    click_in int(11) NOT NULL default '0',
    click_out int(11) NOT NULL default '0',
    category text NOT NULL,
    KEY ID (ID)
    ) TYPE=MyISAM;");

    CREATE TABLE reset (
    datum date NOT NULL
    ) TYPE=MyISAM;");

    print "If no errors, this script completed the operation! Please read readme.txt for more instructions.";
    ?>



    So, beim ausführen der Datei kommt folgender Fehler:

    Parse error: parse error in /home/www/web155/html/toplist/make_database.php on line 25


    Line 25 ist die: CREATE TABLE reset (

    Kann jemand sehen, woran es liegt?
    (Vielleicht ne Klammer zuviel / vergessen?)
    Bin für jede Hilfe dankbar.

    Grüße Michael

  • #2
    Dieses erstellen der Tabelle reset steht einfach so im Quellcode? Funzt natürlich nicht. Muss doch mit mysql_query() gemacht werden. Wie ich sehe hast du zwar dort eine schließende Klammer mit den korrekten ');' aber keine öffnende samt mysql_query.
    "Ach was soll's? Dann bau ich mir halt meinen eigenen Vergnügungspark mit Blackjack und Nutten." - Bender

    Kommentar

    Lädt...
    X