I want to send xml data to php page

my xml in flash is that for examle:

<level id="1" mark="10"><page id="12">HI..</page></level>

i send it,but at the URL i see this:

../inex.php?xml=<level id=1 mark=10><page id=12>HI..</page></level>

without double qout....!!!!

so i can't read this xml with simplexml_load_file() function in php

what's wrong???!!!

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

You should serialize and escape your xml object otherwise you won't be able to send it to php.

Check out serialization for AS3 and php.

Cheers, Rob

link|improve this answer
how can i serialize in as3? – Mojtaba A. Mar 24 '11 at 10:19
Check out this one: code.google.com/p/asx3m. – heartcode Mar 24 '11 at 11:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.