Help for this page

Select Code to Download


  1. or download this
    # Process the form if there is a file name entered
    if (my $file = param('filename')) {
    ...
        }
    }
    
  2. or download this
    
     $filename = $query->param('uploaded_file');
     @stats=stat $filename;
     $size_of_file=$stats[7];