in reply to Value for session set in CGI::Session is undef
In your "main program", you call:
print Dumper($logged_in, $session->param('user'));
But, $session isn't defined. It is defined (with "my" and the the "new CGI::Session()" call in the subroutine) and not passed back.
Try doing the $session = new... call in the main program and passing both the $session and $user variables to the sub.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Value for session set in CGI::Session is undef
by bradcathey (Prior) on Apr 07, 2009 at 21:32 UTC |