in reply to Encrypting or Hiding Certain Info in a URL

Since HTTP is a stateless protocol, the mechanisms for adding "state" (such as "logged in") have to use one or more of the following methods: Each has advantages and disadvantages. Be sure to steer clear of anyone that advises you to use any of the following: That should get you started. For more information on some of the session topics, see my WebTechniques Perl column archives.

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re: Adding "state" to HTTP
by hakkr (Chaplain) on Nov 26, 2001 at 17:40 UTC
    LDAP servers, MySQL and DBM or even plain text files can also be mighty useful for session management. Like the man says username or email address should be used to retrieve data.