Re: Problem with form data using mod_perl and CGI.pm

2000-08-14 Thread stevenl
Stas Bekman wrote: > > On Mon, 14 Aug 2000, stevenl wrote: > > > Thanks. That seems to be the problem, accessing an outer lexical > > variable in an inner subroutine. I'm not quite sure I understand why > > Perl behaves this way. Java seems to handle this

Re: Problem with form data using mod_perl and CGI.pm

2000-08-14 Thread stevenl
s the best way to define a global value like $query if I want to 'use strict'. I really don't want to be passing $query to all my subroutines. I could package define it as $main::query but that seems awkward. -Steven Jie Gao wrote: > > On Sat, 12 Aug 2000, stevenl wrote

Problem with form data using mod_perl and CGI.pm

2000-08-13 Thread stevenl
I am running Linux 2.2, Apache 1.3.12, mod_perl 1.24, and CGI.pm 2.70. If I declare a CGI variable using 'my' (see below) and use mod_perl, I encounter problems with POST data. On subsequent entries in the form, it continues to use the old data. The problem does not appear if I don't use 'my' (