I'm not sure I understand your question properly. Your code and part of your prose indicates that you are sending cookies to people visiting your site, but other parts of your prose seem to say that you are getting a cookie from a site (eg with LWP). I'll assume the former as it has 80% probability :)

It pretty much depends on whether cookies are vital to your app. If they are, when someone hits a part of it and doesn't have a cookie it means that they just arrived. What I do in such cases is set the cookie and redirect to another URL (eg. /cookie-check.pl). Then, at that other URL, I check that I get my cookie back. If it's there, then all's perfect and I redirect them back to where they wanted to go to in the first place. If it isn't, then I display an error page stating that cookies are needed.

If your app doesn't absolutely need cookies to work, then don't bother.

HTH -- darobin


In reply to Re: rechecking the cookie by darobin
in thread rechecking the cookie by Hammy

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.