Here's the current code that I have:
PHP Code:
$link = mysql_connect($host,$username,$password) or die(mysql_error());
$query = 'CREATE TABLE mycms ('.
'id INT NOT NULL AUTO_INCREMENT'.
'username VARCHAR(10) NOT NULL, '.
'password VARCHAR(10) NOT NULL, '.
'PRIMARY KEY (id))';
$result = mysql_query($query);
Is there anything wrong with the code that I have? There's no error that PHP gives me, it seems that's all right, but when I double check on the localhost database, it doesn't have the table that I specified "
mycms"
