Here's the code, to make a table on the database:
<?
$conn = mysql_connect("localhost", "dcevil", "incashap") or die (mysql_error());
mysql_select_db("dcdb", $conn);
$sql = "CREATE TABLE hit (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY ) ; " ;
mysql_query ($sql, $conn) or die (mysql_error());
?>
And here's the error message i get:
You have an error in your SQL syntax near '; ' at line 1
Any ideas?