darkpunkcalob
New Member
- Messages
- 22
- Reaction score
- 0
- Points
- 0
I am having an issue with this script, when vist the page, it just loads forever.
What am i doing wrong?
What am i doing wrong?
PHP:
<?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 />";
}
?>