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
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
Kommentar