hi , i have a liitle problem, i need to read an xml file and translate it into html
so i have e.g.
<person name="Hans">
<hair>Red</hair>
<age>23</age>
<flag>4</flag>
</person>
and i want that to be
Name: Hans<br>
age: 23<br>
flag: 4<br>
is anyone there who can give me some code examples to realize that?
the main problem is the <person name="Hans">
,how do i get the name out of that?