what success, if any, have you had in implementing dynamically generated links to online mapping services (such as mapquest.com).
So when a user requests more info about a company, the address info is retrieved from the database and put into the URL that links to the mapping service website.
My effort to stick array values into the URL have not succeeded.
this is the example given at mapquest
<a href = "http://www.mapquest.com/maps/map.adp?city=denver&state=CO&address=1565+california+st&zip=80202&country=us&zoom=5">
this is one of my many failed experiments.
$state=$row1[state];
$zip=$row1[zip];
print '<a href = "http://www.mapquest.com/maps/map.adp?state=$state&zip=$zip&zoom=5">MAP</a>';