in reply to Re^2: Checking for cookies
in thread Checking for cookies

Okay, a bit easier to help with the code now. It is probably best to check that the cookie exists before trying to call a method on it (you are getting the error because the cookie does not exist and so perl cannot find relevant "value" method).

Try this:
if (exists($cookies{'FFInfoVotedOn'})) {

Replies are listed 'Best First'.
Re^4: Checking for cookies
by Eagle_f90 (Acolyte) on Jul 15, 2007 at 04:16 UTC
    Thanks I always forget about the "exists" command