RE: [PHP] HTTP header question.

2001-07-29 Thread Don Read
On 30-Jul-2001 Ben Bleything wrote: > All I want to do is output "Authentication failed" above the form if > they type in invalid credentials. I want to do it by passing a header > that contains the same information as if there were a form submitted > that contained a field name "failed" and val

RE: [PHP] HTTP header question.

2001-07-29 Thread Ben Bleything
html. Hope this helps everybody out. Thanks, Ben -Original Message- From: Richard Baskett [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 29, 2001 8:26 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] HTTP header question. The way that I did it was by using sessions which if you have a log

Re: [PHP] HTTP header question.

2001-07-29 Thread Richard Baskett
> Thanks, > Ben > > -Original Message- > From: Dave VanAuken [mailto:[EMAIL PROTECTED]] > Sent: Sunday, July 29, 2001 7:16 PM > To: Ben Bleything; [EMAIL PROTECTED] > Subject: RE: [PHP] HTTP header question. > > what is the logic behind requiring the header

RE: [PHP] HTTP header question.

2001-07-29 Thread Ben Bleything
nt: Sunday, July 29, 2001 7:16 PM To: Ben Bleything; [EMAIL PROTECTED] Subject: RE: [PHP] HTTP header question. what is the logic behind requiring the header? for example, to avoid using cookies and yet ensuring security, we pass a loginkey for all pages. every page has include('se

RE: [PHP] HTTP header question.

2001-07-29 Thread Dave VanAuken
what is the logic behind requiring the header? for example, to avoid using cookies and yet ensuring security, we pass a loginkey for all pages. every page has include('securitycheck.php'); which parses the loginkey, uncompresses/decode it to get the userid and timestamp, and prompts for