I want to display a set number of results per web page. Let's say I have 20 rows of results, and I want to print out only 8 per page. I'm still a newbie--how would I code this?
For the full result set I have (simplified and taking out the table):
while ($business = mysql_fetch_array($businesses)) {
$id = $business["ID"];
echo($id);
{