Forum Moderators: open
complex scripting
Actually just a couple of lines of code will suffice in both Perl [search.cpan.org] and PHP [php.net].
$fh = $query->upload('name_of_file_upload_field');
while (<$fh>) {
print;
} will print an uploaded file in Perl using Lincoln Steinīs CGI module [search.cpan.org].
Andreas