in reply to Still Having a Struggle with CGI::Session

A cookie is your only option. HTTP wasn't designed for this.

----
send money to your kernel via the boot loader.. This and more wisdom available from Markov Hardburn.

  • Comment on Re: Still Having a Struggle with CGI::Session

Replies are listed 'Best First'.
Re^2: Still Having a Struggle with CGI::Session
by shaolindoman (Acolyte) on Jun 30, 2004 at 16:38 UTC
    Thank you. I just realized I could access the info through a cookie with $sid = $cgi->cookie("CGISESSID") || undef; Hopefully that will work with everything I need. Thanks.