Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML to and from Unordered list

Status
Not open for further replies.

hostinvest

Technical User
May 28, 2011
1
US
How do I move from an XML file to an HTML unordered list and back? I guess it should be a function to traverse, but I am very confused because they do not seem to have the same format.

<menu>
<menu>Home</menu>
<menu>Services
<menu>Paint</menu>
<menu>Check</menu>
</menu>
</menu>

<ul>
<li>Home</li>
<li>Services
<ul>
<li>Paint</li>
<li>Repair</li>
</ul>
</li>
</ul>

Please help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top