On Dec 30, 4:58 pm, diretur <[email protected]> wrote:
> my problem: I have the latitude and longitude of my website users in
> the database A and other information I'd like to display in the marker
> in the database B.
> How can I merge this information in order to display it together?

This isn't an API problem. It's a server-side database problem. And
you don't say what database or server language you're using.

Assuming MySQL and PHP, have a look at 
http://uk3.php.net/manual/en/function.mysql-select-db.php

In particular, this will work (providing that the two databases have
the same access credentials available):
mysql_query("SELECT * FROM database1.table ",$handle);
mysql_query("SELECT * FROM database2.table ",$handle);

Andrew
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to