This article mainly introduces php mysql_list_dbs()function usage, simple This article introduces the functions of the mysql_list_dbs() function and the implementation skills of listing all mysql databases. Friends in need can refer to
. This article describes the usage of the php mysql_list_dbs() function. Share it with everyone for your reference, the details are as follows:
mysql_list_dbs() function
Definition: List all databases in the MySQL server
$conn=@mysql_connect("localhost","root","admin")or die(mysql_error()); $db=mysql_list_dbs($conn); while($result=mysql_fetch_object($db)){ echo $result->Database."<br>"; }
The above is the detailed content of Detailed explanation of sample code for php mysql_list_dbs() function usage. For more information, please follow other related articles on the PHP Chinese website!