in reply to Re^2: CGI, uploading multiple files
in thread CGI, uploading multiple files
Try it without the if block
# if ($upload_file){ open (OUTFILE,">$upload_folder/$upload") or die $!;; binmode OUTFILE; while (<$upload_file>) { print OUTFILE; } # } # else { # print "<b>Guess it's broken</b><br/>"; # }
Also, it might help to add this line while developing but take it out when finshed.
use CGI::Carp 'fatalsToBrowser'; # use only for test/debugpoj
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: CGI, uploading multiple files
by edimusrex (Monk) on Mar 13, 2017 at 20:21 UTC | |
by poj (Abbot) on Mar 13, 2017 at 22:12 UTC |