> on my test page:www.mafiotul.ro/geo/index3.htmlI put a button in > order to save into my database the coordinates of my last draggable > marker position. I want to save in my table (mymaps) fields.
I don't know what table (mymaps) fields are. Where are you trying to save the data? > I don't know how to do that. I now have the coordinates but I don't > have a clue how to do that using php, html and javascript. php, html, and javascript are not databases. Here's an example of saving data to MySQL - http://code.google.com/apis/maps/articles/phpsqlinfo.html You'd set your javascript up to gather the data. Send it to some server script, using html form GET or POST parameters. You have a server script to accept that data, and stick it in your data store of whatever kind you have. You'd probably add some kind of user feedback - success/failure messages, or an updated map showing the new data. No maps API involvement really. 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 -~----------~----~----~----~------~----~------~--~---
