in reply to why do CGI's mess everything up???
-or-print $query->filefield(-name=>'uploaded_file', -default=>'starting value', -size=>50, -maxlength=>80);
This will not change the contents of the file.print $query->filefield('uploaded_file','starting value', 50,80);
You can read the file by
Note: this is just copy-n-paste from CGI.$filename = $query->param('uploaded_file'); while (<$filename>) { print; }
|
|---|