[PHP] recursive displaying tree structure
Hi, May this can help you: $value) { $tmp[$key] = $value; } $tmp['indent'] = $indent; $ret_tree[] = $tmp; tree($tmp['id'], $indent+1); } }
[PHP] recursive displaying tree structure
Hello, If anyone have expamples of displaying tree structure. Say I have array $result[x][y] with folloowing data XY["ID"]Y["OWNER"] 01 0 12 1 23 2 34 2 45 3 56 2 67