how to create a table in php and syntax of its
problem creating a table
2644
20-Dec-2010
Amit Singh
24-Dec-2010by 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);