in reply to mod_perl and CGI variable lifetime puzzle
You need to explicitly pass the CGI object to each sub that uses it.my $q = CGI->new(); sub something { $q->param().... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: mod_perl and CGI variable lifetime puzzle
by noslenj123 (Scribe) on May 13, 2005 at 22:26 UTC | |
by perrin (Chancellor) on May 14, 2005 at 16:30 UTC |