i'm just messing around and trying to see the difference... i can set cookies fine w/ CGI.pm, but if i manually try to set them by printing them out, it doesn't work? this is what i have:
$cookie_id = &random_id; $cookie = "Set-Cookie: cid=$cookie_id; expires=01-Jan-2020 01:01:01 GM +T;\n"; print "Content-type: text/html\n"; print $cookie; print "\n";
what it actually prints out is this:
Content-type: text/html Set-Cookie: cid=MbGFp1L0uIGT50BAlb5wovvwT86thIm5; expires=01-Jan-2020 +01:01:01 GMT;
but there's no cookie set, any ideas why? thanks

In reply to how to set a cookie without using CGI.pm? by chauzer

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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, details, 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, summary, 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.