|
|
|
Clear questions and runnable code get the best and fastest answer |
|
| PerlMonks |
Re^3: CGI hookby Zaxo (Archbishop) |
| on Aug 07, 2006 at 23:23 UTC ( [id://566058]=note: print w/replies, xml ) | Need Help?? |
This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.
In my CGI.pm, that passage reads,
You can set up a callback that will be called whenever a
file upload is being read during the form processing. This
is much like the UPLOAD_HOOK facility available in
Apache::Request, with the exception that the first
argument to the callback is an Apache::Upload object, here
it's the remote filename.
$q = CGI->new();
$q->upload_hook(\&hook,$data);
sub hook
{
my ($filename, $buffer, $bytes_read, $data) = @_;
print "Read $bytes_read bytes of $filename\n";
}
The hook is not an argument to new, but is set in the upload_hook method.
After Compline,
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||||||||