001
25.10.2004, 01:57 Uhr
Pablo
Supertux (Operator)
|
Das Query ist falsch, 1. fehlt eine rechte Klammer und 2. fehlt der Tabellentyp. Außerdem wenn du id hast, dann sollte id ein primary key sein, damit es eindeuitig wird und keine 2 gleiche id gibt, probiers mit folgendem Query
CREATE TABLE test (id INT NOT NULL AUTO_INCREMENT,PRIMARY KEY(id)) TYPE = MYISAM;, also
PHP 4: |
function createTab() { mysql_select_db("user"); $sql = "CREATE TABLE test (id INT NOT NULL AUTO_INCREMENT,PRIMARY KEY(id)) TYPE = MYISAM"; if (mysql_query($sql)) { echo "tab erstellt"; } else { echo "tab fehler"; } }
|
-- A! Elbereth Gilthoniel! silivren penna míriel o menel aglar elenath, Gilthoniel, A! Elbereth! |