On 31 July 2010 23:14, andrewliu <[email protected]> wrote: > > Its a weird message that is not like any mysql error I've seen. > > How would I get rid of this message?
It's not a mysql error: it's a browser error. Your XML is malformed and contains text after the tag which closes the outer element, and (since the error is on line 2) I guess it's something like <markers /> <marker>...</marker> <marker>...</marker> </markers> Note that the top tag is self-closing, so your XML tree is empty. Everything after the empty outermost element is ignored -- well, it causes an error, so the browser doesn't know what to do with it. This is really difficult to debug from your descriptions, though. I think it's time to put it online. -- 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.
