I can get the content of this page into a string by using:
$html = implode('', file("http://www.city-data.com/zips/45309.html"));
Now, I want to pull out just the city and state out of the $html. Is there an easy way to do this to this page??
http://www.city-data.com/zips/45309.html
If it is complicated, is there a better online source that can tell you a city and state based on zip code, that is easier to pull the city and state from?
Thanks! :p