Hi i have an xml file with multiple tags that are the same.. how can i parse into an array? So i can display data later on in the page?
example...
many thanks,
Brian
example...
Code:
<parts>
<Part>
<Part_Type>CD</Part_Type>
<Part_Price>10.00</Part_Price>
<Part_Details>REM</Part_Details>
</Part>
<Part>
<Part_Type>DVD</Part_Type>
<Part_Price>12.00</Part_Price>
<Part_Details>THE MATRIX</Part_Details>
</Part>
<Part>
<Part_Type>BOOK</Part_Type>
<Part_Price>5.00</Part_Price>
<Part_Details></Part_Details>
</Part>
</parts>
many thanks,
Brian