I want to convert one xml to another xml.for example if xml tag as string,
<book>
<title>test</test>
<isbn>1234567890</isbn>
<author>test</author>
<publisher>xyz publishing</publisher>
</book>
i want to convert above xml as,
<b00>
<t001>test</t001>
<a001>1234567890</a001>
<a002>test</a002>
<p001>xyz publishing </p001>
</b00>
how to convert xml using php
t001anda002, it kinda defeats the point. You may as well have have used a flat CSV file.