Help for this page

Select Code to Download


  1. or download this
        while (my $row = $sth->fetch()) {
            for (1..$#$row) { 
    ...
                ...
            }
        }
    
  2. or download this
        while (my $row = $sth->fetch()) {
            my ($parent_id, $id) = @$row;
            ...
        }