in reply to cgi::session issue with session data retrival
Firstly, add use strict; and use warnings; to your scripts. When you've done this, Perl will start helping you. You'll need to fix a few things, e.g. changing $cgi = new CGI; to my $cgi = new CGI; - I can see a couple more like that.
Next, take a look at CGI::Session::Tutorial.
If you're still experiencing difficulties, post your updated code as well as any relevant output.
-- Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: cgi::session issue with session data retrival
by saifuddin786 (Initiate) on Oct 26, 2010 at 18:11 UTC | |
by kcott (Archbishop) on Oct 26, 2010 at 19:33 UTC | |
by saifuddin786 (Initiate) on Oct 27, 2010 at 08:31 UTC |