Code: Select all
cannot load MySQL extension,
please check PHP Configuration.Code: Select all
<?php
$link = mysql_connect('localhost', 'blah', 'blah') or die(mysql_error());
$db_list = mysql_list_dbs($link) or die(mysql_error());
while ($row = mysql_fetch_object($db_list)) {
echo $row->Database . "\n";
}
?>but if i run it from my webserver it returns nothing at all
is it a problem with my install of php 5, do i need to reinstall mysql, or is it just an issue with me/phpMyAdmin????
thanks guys