in reply to uploads with Apache.pm

You want Apache::Request, part of libapreq.

From the docs:

upload Returns a single Apache::Upload object in a scalar context or all Apache::Upload objects in an array context: my $upload = $apr->upload; my $fh = $upload->fh; my $lines = 0; while(<$fh>) { ++$lines; ... } An optional name parameter can be passed to return the Apache::Upload object associated with the given name: my $upload = $apr->upload($name);

Replies are listed 'Best First'.
RE: Re: uploads with Apache.pm
by Aighearach (Initiate) on Jul 12, 2000 at 09:56 UTC
    Excellent, thank you! That's an odd place for them to hide it, I am surprised it is not standard. Particularly confusing was that I was already using Apache->request(); # the namespace seems cluttered.
    Paris Sinclair    |    4a75737420416e6f74686572
    pariss@efn.org    |    205065726c204861636b6572
    I wear my Geek Code on my finger.