How do I remove the hirearchy section from this xml using php. Below is the structure of the xml currently:
<xml>
<hirearchy>
hirearchy child nodes...
<hirearchy/>
<products>
product child nodes...
</products>
</xml>
I want to open the file with php, remove the hirearchy section and the save the xml file agains so it looks like this:
<xml>
<products>
product child nodes...
</products>
</xml>