Hi,
Is the any way I can populate a dropdown navigation menu with categories and subcategories i have in mysql??
This is what I have so far, with the categories and subcategories just hardcoded in the html.
<div class="menu">
<ul id="verticalmenu" class="glossymenu">
<li><a href="#" >Ribbon</a>
<ul>
<li><a href="#">7/8</a></li>
<li><a href="#">5/8</a></li>
<li><a href="#">3/8</a></li>
</ul>
</li>
<li><a href="#" >Flatbacks</a></li>
<li><a href="#" >Hair Bands/Clips</a></li>
<li><a href="#" >Baby Accessories</a></li>
</ul>
</div>
But I want to allow the site owner to add more categories and subcategories as and when they need to.
Can anyone help?
Thanks for looking.
Glen.......