mysql_db_name
mysql_db_name
Retrieves database name from the call to mysql_list_dbs
Waarschuwing: >
SELECT DATABASE()
string **mysql_db_name** resource $result int $row mixed $field
Retrieve the database name from a call to
.
mysql_list_dbs
result
The result pointer from a call to .
mysql_list_dbs
rowThe index into the result set.
fieldThe field name.
Returns the database name on success, and false on failure. If false
is returned, use to determine the nature
of the error.
mysql_error
Voorbeeld: 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++;
}
?>
Opmerking: > info.deprecated.alias
mysql_dbname
mysql_list_dbs``mysql_tablename