"Pt2002" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi
>
> I have a table like this
> id, pid, name. When a item has no parent, pid = 0. There is no limit in
> depth.
> 1, 0, Test 1
> 2, 1, Test 1.1
> 3, 1, Test 1.2
> 4, 2, Test 1.1.1
> 5, 1, Test 1.3
> 6, 3, Test 1.2.1
>
> I need to read this table and return an array that represents the tree.
> Maybe using a recursive function but had no success.
>
> I just need someone to point in the right direction.
> TIA
>
> Greets
> pt2002

Hi,

those two PEAR packages might help you:
http://pear.php.net/package/DB_NestedSet
http://pear.php.net/package/Tree

Regards, Torsten Roehr

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to