V
vijay
Upload form
@files = 4;
for(my $i=1;$i<=scalar(@$files);$i++){
print "File $i Path: ";
print $query->filefield('excel');
print "<br><br>";
}
After form Submit
my @filehandles = $query->upload("excel");
print scalar(@filehandles); # Is always 1 even if I upload more than
one file
How do i upload multiple files with the same name and handle it using
cgi-lib?
Thanks
iavian
@files = 4;
for(my $i=1;$i<=scalar(@$files);$i++){
print "File $i Path: ";
print $query->filefield('excel');
print "<br><br>";
}
After form Submit
my @filehandles = $query->upload("excel");
print scalar(@filehandles); # Is always 1 even if I upload more than
one file
How do i upload multiple files with the same name and handle it using
cgi-lib?
Thanks
iavian