in reply to Upload stuff to server
Usually these files are uploaded into a temoporary directory. CGI.pm deletes them automatically from the tmp dir after processing.print $query->filefield(-name=>'uploaded_file', -default=>'starting value', -size=>50, -maxlength=>80);
$filename = $query->param('uploaded_file'); $type = $query->uploadInfo($filename)->{'Content-Type'}; # or $fh = $query->upload('uploaded_file'); while (<$fh>) { print; }
|
|---|