RE: [PHP] Visual Login

2001-08-01 Thread Ben Bleything
, 2001 7:33 AM To: php Subject: RE: [PHP] Visual Login if you go this route, you would, however, have to check for valid-login users on every page that you want to have security on. > -Original Message- > From: Ben Bleything [mailto:[EMAIL PROTECTED]] > Subject: RE: [PHP] Visua

RE: [PHP] Visual Login

2001-08-01 Thread scott [gts]
if you go this route, you would, however, have to check for valid-login users on every page that you want to have security on. > -Original Message- > From: Ben Bleything [mailto:[EMAIL PROTECTED]] > Subject: RE: [PHP] Visual Login > > One way would be to use a database (

RE: [PHP] Visual Login

2001-07-31 Thread Ben Bleything
One way would be to use a database (of any type) to store username/password data, present the user with a form to fill out, authenticate against the database, set session variable if they are valid, and let them use the application.. if they fail, do whatever. => EXTREMELY brief. Can give more