include ("db_connect.php");
$result = mysql_query("SELECT * FROM consolidated_news WHERE genre like '%Business%'
ORDER BY ID DESC LIMIT 9,60",$db);
if ($myrow = mysql_fetch_array($result)) {
do {
printf("
"); #for spacing between rows.
} while ($myrow = mysql_fetch_array($result));
} else {
echo "There are currently no news articles in the Database.";
}
mysql_close ($db);
?>