DB Name

<html>
<head>
<title>List DB function</title>
</head>
<body text="#000080" bgcolor="#C0C0C0">
<?php
error_reporting(E_ALL);
$link = mysql_connect('manas8x', 'root', 'Manas8');
$result = mysql_list_dbs($link);
$i = 0;
$cnt = mysql_num_rows($result);
echo "<table border='1' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#000080' width='150'>
<tr> <td><b>DB Name</b> </td></tr>";
while ($i < $cnt) {
echo " <tr> <td>".mysql_db_name($result, $i) . "</td></tr>";
$i++;
}
echo"</table>";
$num_rows = mysql_num_rows($result);
mysql_free_result($result);
mysql_close();
?>
<?php
echo "$num_rows Rows<br/>";
?>
</body>
</html>