Hi
I have a bit of Xml that looks something like this:
<books>
<book id="1">
<name>My book</name>
<author>My author</author>
</book>
<book id="2">
<name>My other book</name>
<author>My other author</author>
</book>
</books>
I would like to have it look like:
<books>
<book id="1">
<name id="1">My book</name>
<author id="1">My author</author>
</book>
<book id="2">
<name id="2">My other book</name>
<author id="2">My other author</author>
</book>
</books>
Could somebody point me in the correct direction?