--- [EMAIL PROTECTED] wrote:
> can you give a syntax example?
Here is a piece of what I'm doing:
------------------------------------
if ($clear_cookie eq 'yes') {
my %cookies = fetch CGI::Cookie;
if ($cookies{'id'}) {
$cookies{'id'}->expires('-1s');
print "Set-Cookie: $cookies{'id'}\n";
}
}
print "Content-type: text/html\n\n";
--------------------------------------------------
I'm just following the instructions at:
http://perldoc.perl.org/CGI/Cookie.html
This whole cookie thing is new to me. Never wanted to
use them before because they were out of my control,
browsers might block them, or people might not
understand what they are and get all paranoid. Or do
understand and get paranoid :o)
Denzil
____________________________________________________
Start your day with Yahoo! - make it your home page
http://www.yahoo.com/r/hs
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>