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
    print $query->filefield('uploaded_file','starting value', 50,80);
    
  3. or download this
    $filename = $query->param('uploaded_file');
    while (<$filename>) {
      print;
      }