I am having an issue with this script, when vist the page, it just loads forever.
What am i doing wrong?
PHP Code:<?php
$host = "localhost";
$user = "user1234";
$password = "pass1234";
$connection = mysql_connect ($host, $user, $password) or die ('DB connection failed because: ' . mysql_error());
$list = mysql_list_dbs($connection) or die ('DB list failed because: ' . mysql_error());
while ($row = mysql_fetch_object($list)) {
echo $row;
echo "<br />";
}
?>


LinkBack URL
About LinkBacks
Reply With Quote

