Help for this page

Select Code to Download


  1. or download this
    print $query->filefield(-name=>'uploaded_file',
                            -default=>'starting value',
                            -size=>50,
                            -maxlength=>80);
    
  2. or download this
    $filename = $query->param('uploaded_file');
    $type = $query->uploadInfo($filename)->{'Content-Type'};
    ...
    while (<$fh>) {
         print;
    }