Format XML file

vorenhutz

New Member
I have following xml file:\[code\] <table name="countries"> <column name="id">1</column> <column name="name">Abkhazia</column> <column name="code">XZ</column> <column name="phone_code">+995</column> <column name="flag">xz.gif</column> </table>\[/code\]how can i format this xml to something like this? \[code\] <countries> <id>1</id> <name>Abkhazia</name> <code>XZ</code> <phone_code>+995</phone_code> <flag>xz.gif</flag> </countries>\[/code\]is there some online resources for this?
 
Back
Top