in reply to Setting & Retrieving cookies on WindowsXP problem...

In check_cookie.cgi, instead of:

my $id = $foo->param('id'); my $var = $foo->param('something');

Try:

my $id = $foo->cookie('id'); my $var = $foo->cookie('something');

Replies are listed 'Best First'.
Re: Re: Setting & Retrieving cookies on WindowsXP problem...
by Steny (Sexton) on May 02, 2003 at 03:15 UTC
    *smacks forehead*

    Stupid mistake on my part. What I was actually attempting to do is find out if it was cookies or CGI::Session that is messing up, and now maintaining user info, etc. Must be the session that is acting up, not cookies.

    Thanks for the help.