sleis Posted March 7, 2006 Share Posted March 7, 2006 Hi all,Can someone help with the follow code : I have download a google map code using php and mysql.... one of my database fields called "position"with lat + lon coords the google map is using two fields see below:while ($currentrecord2 < $howmanyrecords2) { $latitude = mysql_result($result2,$currentrecord2,"position"); $longitude = mysql_result($result2,$currentrecord2,"position"); $routesegment = mysql_result($result2,$currentrecord2,"depAptICAO"); $polytext[$routenumber][$routesegment] .= "new GPoint($longitude, $latitude),"; $segmentcounter[$routenumber] = $routesegment; $currentrecord2++; }can someone tell me how get the $latitude + $longitude into one array so i can get the value from my position field regards,Sander Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.