Geting data from XML using PHP

i am trying to manage communication between PHP and flash by parsing data with XML form
i could receive the data in flash from php
now i want to send the data back to php
do you advice me to use xml to send data to php? if yes what is the best way to read such complex XML file in php

Data:

<invoice>
[COLOR=Orange] //information section[/COLOR]
<info>
<invoice>invoice123</invoice>
<name>customername</name>
<date>today date</date>
<contact>customer contact</contact>
<address>some address</address>
</info>
[COLOR=Orange]//items section[/COLOR]
<items>
<item>[COLOR=Orange]//1st item[/COLOR]
<id>item id</id>
<Qty>item Qty</Qty>
<price>item price</price>
<remarks>remarks</remarks>
</item>
<item>[COLOR=Orange]//2nd item[/COLOR]
<id>item id</id>
<Qty>item Qty</Qty>
<price>item price</price>
<remarks>remarks</remarks>
</item>
<item>[COLOR=Orange]//3rd item[/COLOR]
<id>item id</id>
<Qty>item Qty</Qty>
<price>item price</price>
<remarks>remarks</remarks>
</item>
</items>
<invoice>