in reply to Re: Re: Cookie problem
in thread Cookie problem

Variables don't interpolate in single quotes:

if (exists $cookie{'$user'}) {

This code quotes a lot of variables unnecessarily; but this is definitely a bug. Also, you're recreating the $query object; I'm not sure if that'll wipe out any cookies, but it's definitely unnecessary.

Replies are listed 'Best First'.
Re: Re: Re: Re: Cookie problem
by webstudioro (Acolyte) on Aug 15, 2003 at 07:36 UTC
    I try. Thank you.