Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Why can't I access a cookie I have set?

by cLive ;-) (Prior)
on Jan 29, 2002 at 10:19 UTC ( [id://142306]=note: print w/replies, xml ) Need Help??


in reply to Why can't I access a cookie I have set?

Let's assume you have a CGI object:
my $q = new CGI;
Cookies are accessed through $q->cookie('name').

Cookies are sent by the browser when requesting the page. If you set a cookie in a CGI script, the cookie is sent to the browser, but not set in $q->cookie. ie,

Set == Cookie stored in browser Readable == Cookie available in $q->cookie('name') Event Set? Readable? Browser request n n Response to Browser y n Subsequent Browser y y Requests(*)

(*) - within the life of the cookie.

Just remember that $q->cookie only contains cookies sent by the browser as part of that particular http request!

Hope that clears things up a little :)

cLive ;-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://142306]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-25 02:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found