Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other DB name Re: DB name

#123817
TylerNYC
Member

// Usage without mysql_list_dbs()
$link = mysql_connect(‘localhost’, ‘mysql_user’, ‘mysql_password’);
$res = mysql_query(“SHOW DATABASES”);

while ($row = mysql_fetch_assoc($res)) {
echo $row . “n”;
}

// Deprecated as of PHP 5.4.0
$link = mysql_connect(‘localhost’, ‘mysql_user’, ‘mysql_password’);
$db_list = mysql_list_dbs($link);

while ($row = mysql_fetch_object($db_list)) {
echo $row->Database . “n”;
}
?>