Jan 13 2010 09:38 AM 2582 4 Create MySQL Database in PHP abhishek ankur How to create a MySQL Database in PHP? Tejanshu Profile Answers by Tejanshu Questions by Tejanshu Mar 8th, 2010 mysql_query("CREATE DATABASE databasename", connector) is the answer. Where mysql_query() is the PHP function that uses the CREATE DATABASE mysql command.Here is a small code snippet. ... rubin2008 Profile Answers by rubin2008 Questions by rubin2008 Jan 14th, 2010 Mysql database can be created using php by executing CREATE DATABASE query using mysql_query() function in php Answer Question Select Best Answer
Jan 13 2010 09:38 AM 2582 4 Create MySQL Database in PHP abhishek ankur How to create a MySQL Database in PHP? Tejanshu Profile Answers by Tejanshu Questions by Tejanshu Mar 8th, 2010 mysql_query("CREATE DATABASE databasename", connector) is the answer. Where mysql_query() is the PHP function that uses the CREATE DATABASE mysql command.Here is a small code snippet. ... rubin2008 Profile Answers by rubin2008 Questions by rubin2008 Jan 14th, 2010 Mysql database can be created using php by executing CREATE DATABASE query using mysql_query() function in php Answer Question Select Best Answer
Tejanshu Profile Answers by Tejanshu Questions by Tejanshu Mar 8th, 2010 mysql_query("CREATE DATABASE databasename", connector) is the answer. Where mysql_query() is the PHP function that uses the CREATE DATABASE mysql command.Here is a small code snippet. ...
rubin2008 Profile Answers by rubin2008 Questions by rubin2008 Jan 14th, 2010 Mysql database can be created using php by executing CREATE DATABASE query using mysql_query() function in php