Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

RE: Re: Recommended modules for handling cookies?

by btrott (Parson)
on Mar 29, 2000 at 02:49 UTC ( [id://6384]=note: print w/replies, xml ) Need Help??


in reply to Re: Recommended modules for handling cookies?
in thread Recommended modules for handling cookies?

Just try using "sub.domain.com" as the domain. If that's what your domain always is (ie. you don't have other domains like "foo.domain.com" that you want to set the same cookie for), just use that.

And it's "HTTP_COOKIE", not "HTTP-COOKIE". It's an underscore ("_").

And, finally, you really should be using CGI::Cookie. From the docs:

To set cookies:

# Create new cookies and send them $cookie1 = new CGI::Cookie(-name=>'ID',-value=>123456); print header(-cookie=>[$cookie1]);
To fetch cookies:
%cookies = fetch CGI::Cookie; $id = $cookies{'ID'}->value;
Read the documentation for more info, particularly on setting the domain (look at the code setantae posted).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-19 20:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found