Home >Backend Development >PHP Tutorial >Which PHP function is used to create a new database?
PHP uses the mysql_query function to create a MySQL database. This function takes two parameters and returns TRUE on success and FALSE on failure. Its syntax is as follows -
bool mysql_query( sql, connection );
Following are the parameters used in the function -
S. Number | Parameters and description |
---|---|
Required- Create SQL query for MySQL database | |
Optional - If not specified, the last opened connection by mysql_connect will be used. |
The above is the detailed content of Which PHP function is used to create a new database?. For more information, please follow other related articles on the PHP Chinese website!