I am using macromeda Flash to create anXML object which I pass to PHP.
I need to know how to recieve it into PHP so I can process it in PHP.
For now all I want to do is display the XML on the screen.
To start at the simplest point I am trying this:
$my_xml = $_POST;
echo $my_xml;
Of course all it echos is "Array"
If I have tried a few other things, but I am shooting in the dark.
Any help would be greatly appreciated.
I need to know how to recieve it into PHP so I can process it in PHP.
For now all I want to do is display the XML on the screen.
To start at the simplest point I am trying this:
$my_xml = $_POST;
echo $my_xml;
Of course all it echos is "Array"
If I have tried a few other things, but I am shooting in the dark.
Any help would be greatly appreciated.
Comment