Always dies...I used the following to create the table:Code:mysql_query("INSERT INTO userdb VALUES('000000','R.a.B.B.i.T','password','Admin'")
or die("something is wrong.");
Code:$query=("
CREATE TABLE userdb(
id INT(6) NOT NULL auto_increment,
username TEXT,
password TEXT,
rank TEXT
)
");
mysql_query($query);
