in reply to Re: Is this a secure way to handle login?
in thread Is this a secure way to handle login?
However, I second davis suggestion that you should go with a prebuilt module. Apache::Session totally rocks, and will let you store not only usernames and passwords, but any Storable object in you session variables. You have the choice of storing data in regular files, DB_File or several different databases, and the best part is that you don't need Apache; it will happily run under most web servers.
Also, you don't have to bother with generating random numbers for session ID's, as Apache::Session will do all this for you.
Cheers,
--Moodster
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Is this a secure way to handle login?
by perrin (Chancellor) on Mar 27, 2002 at 14:52 UTC | |
|
Re: Re: Re: Is this a secure way to handle login?
by aersoy (Scribe) on Mar 27, 2002 at 23:07 UTC | |
by tipthepizzaguy (Initiate) on Mar 28, 2002 at 05:19 UTC |