moBlog Flash
moBlog Flash
Out of context: Reply #23
- Started
- Last post
- 26 Responses
- unfittoprint0
you want to echo the xml as an url string? I don't think that's wise, you would have to urlencode the whole thing and then escape it in flash again.
Remeber you can use the XML object load method with a PHP script.
Something like:
myXML.load("getXML.php");and in the end of the PHP script just use:
//headers to test in browser
header("Content-Type: text/xml");
//echo the result
echo $xmlfeed;