OK,
- Sorry for screwing up with the - which should have been _. That's what my code has.
- The cookie does get set, with a later expiration date than today.
- The cookie is in my netscape cookies file.
- Here's that snippet of code:
$cookie = $ENV{HTTP_COOKIE};
$name="cookie_name";
$value="cookie_value";
$cur_date = "Tue 28 Mar 2000 13:49:23 -0500";
$expires_date="Wed, 29 Mar 2000 13:49:23 -0500";
$path = "/";
$domain = ".tripod.com";
print "Content-type: text/html\n";
print "Set-cookie: $name=$value; date=$cur_date; expires=$expires_date
+; path=$path; domain=$domain";
print "
<html><body>$cookie</body></html>
";
HELP! What is fishy to me are my dates! And what exactly is that -0500 doing there? (I got this code from somewhere else)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|