Sunday, 15 September 2013

Buiding category tree with PHP

Buiding category tree with PHP

I have that kind of table
ID | NAME | PARENT_ID
1 a0 0
2 b0 0
3 a1 1
4 a2 1
5 a11 3
....
$categories[]={$id,$name,$parent_id}
And i need to build array-tree of these categories...
May someone help me with such task? Would be great.
Thanks.

No comments:

Post a Comment