<?php
$connect = mysql_connect("localhost","root","");
$db_list = mysql_list_dbs($connect);
echo "The list of database are: <br>";
while ($row = mysql_fetch_object($db_list))
{
echo $row-> Database. "<br>";
}
?>
echo $row-> Database. "
";
what this line is telling .. what does this -> mean