Generally, here's what I need to do. Right now I'm just trying to determine the best approach. This is for a site registration form and I need to output potential counties that each "member" may enter in the form of a checkbox.
I have a 'Member' table a 'MemberCounty' table and a 'County' lookup table(contains zip code, county & state as they relate each per column row )
The zip code is being passed as a url variable from a prior page.
With it, I intend to be able to come up with a query (seperately) that will help output the counties within 'X' miles of the zip.
These are checkboxes that the member selects as a service territory.
Assuming I have the query to return the relevant counties within "x" miles of eaches zip code -- basically, what do I need to output this into formatted column rows on the page? (cannot manually format each state, since many companies reside near state borders)
Also, any suqqestions on what to do about irregular numbers of returned counties (the formatting of)
Beginner language, please.