Since using PHP 5.0.2 and MySQL 4.1.6 I'm having basic issues.
$db_link=@mysqli_connect($host,$username,$password);
$db_list=mysql_list_dbs($db_link);
die;
Error: PHP Warning: mysql_list_dbs(): supplied argument is not a valid MySQL-Link resource in c:\Inetpub\wwwroot\view_sql_databases.php on line 13
All I would like to do is list the databases that are currently there. I even tried using a standard mysqli_query to the $db_link. Not sure if this function is just plain missing or if they have changed the name, etc...
Any suggestions would be great!
Thanks,
Brent