in reply to Cookie Woes

maybe this way around:
# untested my %cookies = fetch CGI::Cookies; if (exists $cookie{SessionID}) { # gotya my $cookie = $cookie{SessionID}; # i once spent two hours debugging before i # realized that $cookie isn't a scalar :-/ use Data::Dumper; print Dumper($cookie); }

Replies are listed 'Best First'.
Re: Re: Cookie Woes
by vbrtrmn (Pilgrim) on Oct 22, 2001 at 09:48 UTC
    Mine dies at the cookie retrevial, if I say: my %cookies = fetch CGI::Cookies || die; It will die. If I go open the cookie file, everything is there.
    --
    paul
        WOW, I wasn't familiar with that, unfortunalty for me, it still dies :(
        --
        paul