useing my own db info to replace parts of a url and open in a iframe
Posted
by Morpheus Lucid
on Stack Overflow
See other posts from Stack Overflow
or by Morpheus Lucid
Published on 2010-03-23T01:21:06Z
Indexed on
2010/03/23
1:21 UTC
Read the original article
Hit count: 384
print ("http://maps.google.com/maps/api/staticmap?center=");echo $City;print (",");echo $City;print (","); echo $State;print ("&zoom=14&size=500x500&maptype=roadmap&markers=color:blue|label:S|"); echo $Latitude;print (",");echo $Longitude;print ("&sensor=false")");
when page is loaded it prints right but would like to take the results from this and put into a iframe so when page loads it shows the map of the entry
© Stack Overflow or respective owner