Sorry about the confusion. Let me see if i can clear this up.
Search.html
First, a user enters a 5 digit zip code and the radius (in miles) they would like to extend the search. Action=ZipSearch.php
ZipSearch.php
This file calls file phpziplocator.php. In this file $zipArray is automatically populated with all of the zip codes that are X amount of miles away from the original zip code they inputed. This part of the program is working fine.
Now on ZipSearch.php, I would like to display all locations that have a zip code (db colum: zip) that matches any zip code located in the $zipArray.
From that, i would like to display various fields in about each location (time, hours, etc), but i can do that. I am just having trouble with this because for some reason the results are being filled with empty tables from zip codes that have no matches. So say there are 50 zip codes within 15 miles of zipcode 12345, and only 2 locations within that search area - the code will still display 50 tables, only 2 with actual information populated in them.
bpat1434 - Your code still produced the blank fields. But I understand you were just cleaning up my code, and thanks it helps a bit to see it in an orderly fashion.