Help for this page

Select Code to Download


  1. or download this
    sub get_children {
      my $parent_id = shift;
    ...
        get_children($_);
      }
    }
    
  2. or download this
      my $parent_id = shift;
    
    ...
        $results .= $_."\n";
        get_children($_);
      }