categories table
categoies_id, parent_id
1, 0
2, 0
3, 0
4, 2
5, 2
6, 5
I want to create a categoies tree (use in drop down menu), make it like
1
2
--4
--5
----6
3
I guess it is a function/feature used very often in the e-commerce catalog, forum tree structure.
Is there a good function/class (php scripts) you can recommend that I can use to do the above work?
Thanks!