Help for this page

Select Code to Download


  1. or download this
    my $MISC_FILE_DIR = @ARGV ? shift : die usage();
    # ...
    # ...
    
  2. or download this
    die usage() if @ARGV < 5;
    my ($MISC_FILE_DIR, $req, $inqfile, $sent, $status) = @ARGV;
    
  3. or download this
    while( my @row = $sth->fetchrow_array ) {
            print join( '|', map ( defined() ? $_ : 'NULL', @row )) ."\n";
    }