how to create a table in php and syntax of its
problem creating a table
Ask by Manasavi Rajpoot
Updated 24 Dec 2010
by using syntax:
mysql_select_db("my_db", $con);//Select the Database $sql = "CREATE TABLE Persons //Create the Table ( FirstName varchar(15), LastName varchar(15), Age int )";// Execute query mysql_query($sql,$con);