thanks, randy, that'll help

Randy Kobes wrote:
|OK, it seems File::Temp| should be used instead of
Apache::File.  Now, another problem: handler doesn't
parse query string args: Right after handler start, I
dump $r->args into error log:

with apache2

$VAR1 = 'width=90&height=60';

with apache1

$VAR1 = 'width';
$VAR2 = '90';
$VAR3 = 'height';
$VAR4 = '60';
        
<>
To parse this in mod_perl 2, you can use $r->Apache::args
of Apache::compat in a list context.


Reply via email to