Help for this page

Select Code to Download


  1. or download this
        my $upload_Handle = $q->upload($filename);
    
  2. or download this
    <input type="file" name="upload_file" />
                             ^^^^^^^^^^^
    
  3. or download this
    my $filename   = $q->param('upload_file');    # returns (client-side) 
    +name of the file
    my $filehandle = $q->upload('upload_file');   # returns handle to the 
    +server-side temp file