in reply to Upload Issue
Also note that the CGI module has methods for creating the upload form, and make sure you read about how to limit file sizes.use CGI; my $query = new CGI; my @names = $query->param; foreach my $name (@names) { print "$name => ".$query->param($name)."\n"; }
|
|---|