show/hide this revision's text 2 edited body

use

Use the CGI module.

my $fh = $query->upload('upload_field');
while(<$fh>) {
  print SAVE_FILE $_;
}
show/hide this revision's text 1

use the CGI module.

my $fh = $query->upload('upload_field');
while(<$fh>) {
  print SAVE_FILE $_;
}