I made a query which i can populate a table with following theads using all rows of that query.
section_id | section | category_id | category | subcategory_id | subcategory
Now I am trying to create a multilevel unordered list from this populated table. Is it possible to do it? Result should like this:
<ul>
<li>Section Name
<ul>
<li>Category name for above section
<ul>
<li>Subcategory name for above category and section</li>
</ul>
</li>
</ul>
</li>
</ul>
Thank you for any help.