Hey I am really confused. I am trying to just create a simple table using PHP script. Check this code out and let me know what I am doing wrong. There is no errors in the code and I don't know how to get the MySQL errors. Thanks!
<?php
$db = mysql_connect("localhost","1","1");
mysql_select_db("abc",$db);
$sql = "Create Table multi (
multi_id INT NOT NULL AUTO_INCREMENT,
end_date TEXT,
Primary Key(multi_id))";
mysql_query($sql);
?>