> how can I add in the XML node the results of a second a query of a
> different table (or
> database?).
Have you tried
$query = "SELECT * FROM ...
while ($row = @mysql_fetch_assoc($result)){
// ADD SOME MORE MARKERS
$node = $dom->createElement("marker");
$newnode = ....
....
You just need to take care not to do the header again.
cheers, Ross K
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---