PDA

View Full Version : XML.send and PHP


nchankov
05-08-2002, 02:40 PM
Hello,
when flash submitted an XML object by myXML.send(url) function ...

in PHP what is the handler of the XML? Is it $myXML variable, or something else?

I tried to make <?echo $myXML;?> byt it doesn't working

So the question is how to take sended XML and working on it in php script?

Thank you in advance

zickan
05-15-2002, 08:50 AM
Try this, it works for me:

<?
$data = $GLOBALS["HTTP_RAW_POST_DATA"];
echo($data);
?>

nchankov
05-15-2002, 08:57 AM
Thank you zickan,

I was do it yet, but thanks for the response.

Regards