I have this structure:
<node>
<subnode />
<subnode />
<subnode />
<subnode />
</node>
I want to get this:
<node>
<wrapper>
<subnode />
<subnode />
<subnode />
<subnode />
<wrapper>
</node>
How to do it with simpleXMLelemen t in php 5?
bye
thanks
Luca
<node>
<subnode />
<subnode />
<subnode />
<subnode />
</node>
I want to get this:
<node>
<wrapper>
<subnode />
<subnode />
<subnode />
<subnode />
<wrapper>
</node>
How to do it with simpleXMLelemen t in php 5?
bye
thanks
Luca
Comment