Im trying to make it so i can hae shell access and at my hosting help place it said to use this
CODE :
$link = mysql_connect("localhost", "shrinky_shrinky", "shrinky_******") or die(mysql_error());
mysql_select_db("shrinky_shell", $link) or die(mysql_error());
$query = mysql_query("CREATE TABLE 'user' ( 'name' VARCHAR (20), 'password' VARCHAR (20), 'ID' INT NOT NULL AUTO_INCREMENT, PRIMARY KEY (ID))", $link) or die(mysql_error());
if ($query) echo "Table Created";
?>
Well is there ne thing wrong with what i am doing??? because i when i go to the php site with that code in it its supposed to say Tabe Created, but i jsut see all that code there.
Any suggestions?!