in reply to Re: keeping variables separate
in thread keeping variables separate
I don't understand how it would be possible for a "new" $r to retain a parameter from an old $r, even if, as kennethk suggests the parameter in the new $r has not been explicitly overwritten.sub handler { # use Apache2::Request; is in startup.pl my $r = Apache2::Request->new(shift); my $shipaddr2 = $r->param("shipaddr2"); ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: keeping variables separate
by almut (Canon) on Apr 20, 2009 at 18:02 UTC | |
by RandomWalk (Beadle) on Apr 20, 2009 at 18:50 UTC | |
by almut (Canon) on Apr 20, 2009 at 20:11 UTC |