Multiple File upload
- From: "vijay@xxxxxxxxxx" <vijay@xxxxxxxxxx>
- Date: Thu, 27 Dec 2007 23:17:57 -0800 (PST)
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
.
- Follow-Ups:
- Re: Multiple File upload
- From: Tad J McClellan
- Re: Multiple File upload
- Prev by Date: Re: Creating a feedback form in html
- Next by Date: FAQ 5.14 How come when I open a file read-write it wipes it out?
- Previous by thread: FAQ 5.13 How can I translate tildes (~) in a filename?
- Next by thread: Re: Multiple File upload
- Index(es):
Relevant Pages
|