http://qs321.pair.com?node_id=461334


in reply to session variables

Well... according to CGI::Session, you can just do this:
### $session already initialised as in your code # Set the username to Bart $session->param('username', 'Bart'); ... #retrieve and print the username print $session->('username'); #prints Bart
Would that work for you?

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.