http://www.perlmonks.org?node_id=525182


in reply to inserting and using cookies

I have not used cookie.lib myself, so now I'm guessing ..

Have you included the cookie in the page you send to the browser ?

print "Content-type: text/html\n"; &SetCookies('name',"$name",'email',"$email"); print "\n";

The symptoms you describe sounds alot like either the above or that the SetCookieExpDate call didn't work.

Or perhaps the order is essential, aka you need to call SetCookies after SetCookieExpDate ?

Replies are listed 'Best First'.
Re^2: inserting and using cookies
by clickit (Initiate) on Jan 25, 2006 at 00:06 UTC
    Hi, guha:

    Yes, the SetCookieExpDate call didn't work because SetCookies must be called after SetCookieExpDate. I didn't realize the order is essential. It works now! Thanks!

    Appreciated, Patrick