how to read this xml file with php ?

another_man

New member
Using any method... DOMDocument with foreach if possible, but any other way is good!

<xml>
<node1>
<node>Node Value</node>
<node>Node Value</node>
...
</node1>
<node2>
<node>Node Value</node>
<node>Node Value</node>
...
</node2>
</xml>

Explanation : I have a xml file with the main node (xml) in which I have two child nodes (node1 and node2) in which I have lots of child nodes (node) with their values

Thanks a lot
 
Back
Top