mysql_db_name
(PHP 4, PHP 5)
Retrieves database name from the call to mysql_list_dbs
Note Query: SELECT DATABASE()
Description
Retrieve the database name from a call to mysql_list_dbs().
Parameters
resultThe result pointer from a call to
mysql_list_dbs().rowThe index into the result set.
fieldThe field name.
Return Values
Returns the database name on success, and false on failure. If false is returned, use mysql_error() to determine the nature of the error.
Examples
mysql_db_name() example
<?php
error_reporting(E_ALL);
$link = mysql_connect('dbhost', 'username', 'password');
$db_list = mysql_list_dbs($link);
$i = 0;
$cnt = mysql_num_rows($db_list);
while ($i < $cnt) {
echo mysql_db_name($db_list, $i) . "\n";
$i++;
}
?>Notes
Alias mysql_dbname()