> A final copy of the map itself is > here:http://www.marinevaluesmapping.comyr.com/map_pen_2.html
I dragged a new marker onto the map okay. I clicked to get a text box to fill in and pressed 'save', this gave a syntax error. Your code is running submitdesc() and then ajax(), the URL it constructs looks like http://www.marinevaluesmapping.comyr.com/insertdesc.php?ptid=61&desc=blahblah if you paste that url directly in your browser it gives you a clue about the problem in the php. Likewise if you go on to press 'Done Mapping', your checkpts() routine runs some ajax to http://www.marinevaluesmapping.comyr.com/marvalcheckpts.php and again you can paste that directly in your browser to get a php error message. General comments ; I think my approach would be different ; let the user do all their marker positioning, text-filling, etc. before submitting all the info to your database as a single bundle when complete. You seem to be doing it in steps, but there could be good reasons for that of course. When submitting user-entered text you need to URL encode it - for example & has special meaning in a URL, so what will happen if the user enters "here&there"? Errors. -- 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.
