Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    close OUTFILE;
    close INFILE;
    
  2. or download this
      $fh = $query->upload('FILE1');
      binmode $fh;
      while ($bytesread=read($fh, $buffer, 1024)) {
        print OUTFILE $buffer;
      }