I need help on creating a form to fill up the below XML format. I want to use XML, because the data is only store temporary and will be deleted.
<base>
<featured>
<artist>ABC</artist>
<artisturl>http://www.artisturl.com</artisturl>
<image>http://<image>
<genre>Urban</genre>
<profile>fjlskafjkladsfjalf</profile>
</featured>
<featured>
<artist>ABC</artist>
<artisturl>http://www.artisturl.com</artisturl>
<image>http://<image>
<genre>Urban</genre>
<profile>fjlskafjkladsfjalf</profile>
</featured>
<topchart>
<chart>
<artist>NFD</artist>
<song>rewrwer</song>
<image></image>
<link>http://</link>
<chart>
<chart>
<artist>NFD</artist>
<song>rewrwer</song>
<image></image>
<link>http://</link>
<chart>
<chart>
<artist>NFD</artist>
<song>rewrwer</song>
<image></image>
<link>http://</link>
<chart>
</topchart>
</base>
I want to help also to display it on html. the reason I make this form so that user can input
Thank you