I try to show my databases but I get this:
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource
I use:
Code:
$databases = mysql_query("SHOW DATABASES", $link);
while($database = mysql_fetch_row($databases))
{
echo '<h2>DATABASE: '.$database[0].'</h2>';
}
??