Conny,
Can you explain how to do an address now into City, State, Zip Like: cortland, ny 13045$string = "cortland, ny 13045"; $search = array(", ", ","); $replace = array(" ", " "); $newString = str_replace($search, $replace, $string); $array = explode(" ", $newString);
Ah ha! Nice that makes sense, why did I not think of that! -Jason -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php