On Sep 24, 8:37 pm, komsi <[EMAIL PROTECTED]> wrote: > You can see this link :http://www.micmus.dk/phpsqlajax_genxml.php > and this one :http://www.micmus.dk/phpsqlajax_map.htm
OK. IE doesn't like the character set. You should include an <?xml> preamble, although most parsers/browsers will cope without it. Because there are no line-breaks in the output, it's impossible to get IE to report exactly where the problem is, but it's *probably* here: <marker name="Crab Pot ø æ å" ... > I think those need to be double-encoded and should be output as <marker name="Crab Pot &oslash; &aelig; &aring;" ... > Only certain character entities can be interpreted by the XML parser. ø can't, so you need to write that as &oslash; in order that the parser turns it into ø and the browser can then deal with that. Andrew [NB: The Groups interface may split &oslash; into two words. It should be one string with no whitespace.] --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
