in reply to Re^2: CGI Session
in thread CGI Session

Eric put his finger on it - \t within double-quotes is a tab. (If you look closely at the error message, you'll see blank space -- the tab -- where the "\t" should be.) Change your code to this:

my $session = new CGI::Session(undef, $cgi, {Directory=>'\tmp'});

and try again.

Wally Hartshorn

Replies are listed 'Best First'.
Re^4: CGI Session
by shaolindoman (Acolyte) on Jun 28, 2004 at 15:29 UTC
    Thanks guys for your help. It is working fine now.