I have a data set which looks like this
Name Age
A 10
B 20
C 30
i want to convert the given data into following xml format in php
<?xml version="1.0" encoding="utf-8"?>
<parent>
<child name="A" age="10" />
<child name="B" age="20" />
<child name="C" age="30" />
</parent>