Ich muss einen Fehler gemacht haben also wenn ich install.php aufrufe dann kommt nur diese Meldung : Parse error: syntax error, unexpected '}', expecting ',' or ';' in ...
Es muss an
liegen
Es muss an
Code:
<?php
include "config.php";
$connect = mysql_connect($host,$user,$pass) or die (mysql_error());
mysql_select_db($datenbank, $connect) or die (mysql_error());
$result_1 = mysql_query("
CREATE TABLE `foren` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` tinytext NOT NULL,
PRIMARY KEY (`id`)
)
") or die (mysql_error());
$result_2 = mysql_query("
CREATE TABLE `threads` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`fid` int(11) DEFAULT 0,
`topic` tinytext NOT NULL,
`created` timestamp,
PRIMARY KEY (`id`)
)
") or die (mysql_error());
$result_3 = mysql_query("
CREATE TABLE `answers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tid` int(11) DEFAULT 0,
`fid` int(11) DEFAULT 0,
`user` tinytext NOT NULL,
`topic` tinytext NOT NULL,
`text` text NOT NULL
`created` timestamp,
PRIMARY KEY (`id`)
)
") or die (mysql_error());
if($result_1) {
echo "Tabelle Foren wurde angelegt.<br>";
}
if($result_2) {
echo "Tabelle Threads wurde angelegt.<br>";
}
if($result_3) {
echo "Tabelle Answers wurde angelegt.<br>"
}
?>