> I'm running some PhP, and the output is html: > > http://freeforthepicking.com/Query/isuKmlGenerator.php?q=4103950+&Sub...
IE6 hates it, Firefox has a better stab but fails. Don't you see error messages in your browser, or is it an interpretation problem? It is a non-obvious server configuration thing, not a maps issue. Your php file is coming with a mime header of text/xml. Document.write is not allowed in xml docs, so the maps API loader which uses document.write fails. When you copy the text to a file with extension .html, it probably gets served with a text/html mime type where document.write is allowed. I think you could get round by including some header writing in your php 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 -~----------~----~----~----~------~----~------~--~---
