I have not heard a lot about ways to facilitate user sessions without having to resort to storing something on the client's PC. Say, normally a unique identifier is stored in a cookie in order to trace clients to session data on the server. An alternative to using cookies, you could explore other schemes of tracking users across the stateless protocol (HTTP) which literally runs the 'web'. This is to make use of your clients IP addresses. However, I would not advise this as a very 'solid' option.

There are already a lot of Perl modules that were designed to help you in cases where you need to maintain a persistant client state (as in a session). Take a look at Apache::Session for example. Or, CGI::Session. Also, use CGI to retrieve form parameters and do other.. err.. CGI related stuff ;)

_____________________
# Under Construction

In reply to Re: CGI.pm param not following post by vladb
in thread CGI.pm param not following post by Anonymous Monk

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.