Jump to content

PHP SHOW DATABASES


schutzy

Recommended Posts

Hello All,

I am (attempting to write) writing an admin web interface for a CMS and as usual my first hurdle that I have to jump appears on the first line of real code...:(

The admin's function is to allow simple database management for multiple mysql databases via a browser. The issue that I am having right now is that I am trying to retrieve the names of all of the mysql databases that have been created. Using the command line this is a simple SHOW DATABASE; However, the mysql_query doesn't return any values.

Here's the code:

$dbquery = mysql_query("SHOW DATABASES;");
$i = 0;
while ($row = mysql_fetch_assoc($dbquery)) {
$arr[$i] = $row['post_title'];
echo "<br> $i=$arr[$i]";
$i++ ;
}

This is probably a stupid post but what the heck

Schutzy


Link to comment
https://forums.phpfreaks.com/topic/10400-php-show-databases/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.