You could do it from there by sending the data to a server that writes to your database, but you may well find it easier to perform the geocoding directly from a PHP server using the HTTP interface.
http://code.google.com/apis/maps/documentation/geocoding/index.html If your server knows what addresses need to be geocoded, simply call the HTTP interface and write to the database. Add delays between the calls if there's more than a handful to avoid breaking the geocoding speed limit. If it's only your client code that knows what addresses need to be geocoded, you could send a request to your own server and have it obtain the data from Google via the HTTP interface, send back the response to your client code and write a copy to your database. Do check the Terms carefully, because there are some restrictions about storing geocode content on a database. -- Mike Williams http://econym.org.uk/gmap -- 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.
