American Restaurants
0){
while ($row = mysql_fetch_assoc($res)){
echo "";
echo "
{$row['name']}
";echo "
View Menu
";echo "
{$row['address']}
";
echo "{$row['city']}, {$row['state']} {$row['zip']}
";
echo "{$row['phone']}
echo "
Type of Cuisine: {$row['type']}
";echo "
Style: {$row['style']}
";echo "
Hours: {$row['hours']}
";echo "
Meals: {$row['meals']}
";echo "
Prices: {$row['prices']}
";echo "
Payment Notes: {$row['payment_notes']}
";echo "
Payment Methods: {$row['payment_methods']}
";echo "
Alcohol: {$row['alcohol']}
";echo "
Handicap Access: {$row['handicap_access']}
";echo "
Seating Capacity: {$row['seating_capacity']}
";echo "
Parking: {$row['parking']}
";echo "
Smoking: {$row['seating']}
";echo "
Reservations: {$row['reservations']}
";echo "
Attire: {$row['attire']}
";echo "
Age Restrictions: {$row['age_restrictions']}
";echo "
Services: {$row['services']}
";}
}
else if (mysql_num_rows($res2) > 0){
while ($row2 = mysql_fetch_assoc($res2)){
echo "
For more information, click on a restaurant name.
";echo "
{$row2['name']}
";echo "
{$row2['address']}
";
echo "{$row2['city']}, {$row2['state']} {$row2['zip']}
";
echo "{$row2['phone']}
echo "
}
echo "
";
if ($page1 > 1) {
$prev = ($page1 - 1);
echo "<< Next 10 ";
}
if ($page1 < $total_pages) {
$next = ($page1 + 1);
echo "Previous 10 >>";
}
}
?>