Help for this page

Select Code to Download


  1. or download this
    USER:
      while ( $pointer = $sth->fetchrow_hashref ) {
    ...
        print "Directory '$userdirectory' to be deleted\n";
        File::Path::rmtree( $userdirectory );
      }
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
      # Return a list of the first column of each row.
      return map { $_->[0] } @{ $all_rows_aref };
    }