Christoph Haas
Mitglied
Hallo, ich habe folgendes Problem. Ich möchte über ein PHP script in MySQL eine Datenbank erstellen. Natürlich besteht auch eine Verbindung zu MySQL.
Hier mal meine sql.php
Leider geht das auch nicht wirklich
kann mir jemand helfen!?
Hier mal meine sql.php
PHP:
include ("config.inc.php");
$link = mysql_connect('localhost', 'root', 'root');
if ($link) {
echo "Verbindung besteht";
}
if (mysql_create_db('test')) {
echo "Datenbank wurde angelegt";
}
Leider geht das auch nicht wirklich
PHP:
$table = "liste";
$create= "CREATE TABLE $table (
`id` int(11) NOT NULL auto_increment,
`anrede` varchar(4) collate utf8_unicode_ci NOT NULL,
`vorname` varchar(30) collate utf8_unicode_ci NOT NULL,
`nachname` varchar(30) collate utf8_unicode_ci NOT NULL,
`email` varchar(255) collate utf8_unicode_ci NOT NULL,
`status` varchar(3) collate utf8_unicode_ci NOT NULL,
PRIMARY KEY (id))";
mysql_query($create);
?>
kann mir jemand helfen!?