i cant seem to create table in my mysql database in my sql host...is there something wrong wit my script:
<?
$user="myuser";
$pass="mypassword";
mysql_connect("sql-01.portlandpremium.co.uk",$user,$pass);
mysql_db_query("CREATE TABLE dls(id BIGINT(16) default '0' NOT NULL AUTO_INCREMENT, name TEXT, map TEXT, email TEXT, desc LONGTEXT, PRIMARY KEY(id))","ssworld") or die("Why?");
?>