Contributed by draco_iii
on Jun 18, 2000 at 20:10 UTC
Q&A
> CGI programming
Answer: How can I delete a cookie? contributed by Ovid See How can I maintain a session cookie for more information.
If you don't set an expiration date on a cookie that you've created, it will be deleted when the browser is closed.
If the user wants to delete a cookie created in a previous session, you can set the expiration date of the cookie in the past (or possibly set it to "", I haven't tried this).
If you'd like to learn more, you can read Netscape's Preliminary Specification for cookies. | Answer: How can I delete a cookie? contributed by Toxa Use "expires" or you can send the cookie again with a null value "";
Ex:
use CGI qw/:standard/;
use CGI::Cookie;
my %CookieVars = (
ISAUTH => $ActualCookieVars{ISAUTH},
USERNAME => $ActualCookieVars{USERNAME},
AUTHLEVEL => $ActualCookieVars{AUTHLEVEL},
MYNUMBER => "$mynumber"
);
# set cookie to the user
my $cookie1 = new CGI::Cookie(
-name=>'Test',
-value =>\%CookieVars, # var to be sent
-expires=>'+1h', # time to expire
-domain=>"teste.com", # domain
-path=>'/', #option path
-secure=>0 # no ssl
);
|
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|