I've been trying to figure out how to clear a cookie from a PC's memory. Currently I'm trying the following code;
my $cookie_user = $IN->cookie (-name => 'user', -value => '', -path => '/' );
# finalise the cookies...
print $IN->header( -cookie => [$cookie_pass, $cookie_user] );
It doesn't seem to be working though. Is there a feature built into CGI::cookie that will let you delete cookies? I've searched high and low on google.com, but all the results seem to only tell you how to write cookies, and not clear them
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
Code:
my $cookie_pass = $IN->cookie (-name => 'pass', -value => '', -path => '/' ); my $cookie_user = $IN->cookie (-name => 'user', -value => '', -path => '/' );
# finalise the cookies...
print $IN->header( -cookie => [$cookie_pass, $cookie_user] );
It doesn't seem to be working though. Is there a feature built into CGI::cookie that will let you delete cookies? I've searched high and low on google.com, but all the results seem to only tell you how to write cookies, and not clear them
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates

