blahblah has asked for the wisdom of the Perl Monks concerning the following question:
$fh = $query->upload('uploaded_file'); while (<$fh>) { print; }
my @filehandles = $query->upload('filename'); foreach my $fh (@filehandles) { if (defined($fh)) { while (<$fh>) { print; # or write it out locally } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: upload filehandle expiration
by fglock (Vicar) on May 23, 2003 at 17:37 UTC | |
|
Re: upload filehandle expiration
by BrowserUk (Patriarch) on May 23, 2003 at 19:01 UTC | |
|
Re: upload filehandle expiration
by little (Curate) on May 24, 2003 at 10:41 UTC |