Help for this page

Select Code to Download


  1. or download this
        my ($subid, @children);
        while (($subid) = $children->fetchrow_array) {
    ...
        for $subid (@children) {
            walktree ($subid);
        }
    
  2. or download this
        while(my ($subid) = $children->fetchrow_array) {
            walktree($subid);
        }