Help for this page

Select Code to Download


  1. or download this
    my $filename = $query->param("file_uploaded");
    open(FH, "<$filename or die "cannot open!");
    
  2. or download this
    my $filename = $query->param("file_uploaded");
    while (<$filename>) {
     # do something
    }