PHP:
<?
$user="timder12_game";
$password="xxx";
$database="timder12_game";
$localhost="mysql4.freehostia.com";
mysql_connect($localhost,$user,$password);
@mysql_select_db($database) or die( "Unable to select database");
$setup="CREATE TABLE user (id int(6) NOT NULL auto_increment,username varchar(15) NOT NULL,password varchar(15) NOT NULL,email varchar(30) NOT NULL)";
mysql_query($setup);
print("table created");
mysql_close();
?>
deze pagina heet index.php en als ik naar mijn site ga komt er gewoon table created maar als ik in phpadmin kijk is er geen table...