I'm trying to retrieve information from a MYSQL DB. However, I get this error.
My code:
$result = mysql_query("SELECT * FROM DB ORDER BY name ASC");
while($row = mysql_fetch_array($result)) {
echo ucwords($row['name']) . "\t" . ucwords($row['number']) . "<br>";
echo "<hr width='20%'>";
}