Re: [PHP] Re: Central authentication for multiple sites

2003-09-29 Thread CPT John W. Holmes
From: "Fraser Campbell" <[EMAIL PROTECTED]> > On Monday 29 September 2003 15:58, you wrote: > > > Like someone else mentioned, use sessions or something like them. The key > > is you're passing a unique id around for each person that logs in. When > > they go to another site, this ID must go with t

Re: [PHP] Re: Central authentication for multiple sites

2003-09-29 Thread Marek Kilimajer
Fraser Campbell wrote: Got it. How about this: - every login form sets a session ID - immediately after logging in the user is directed to a page showing that successful login has occurred. The result screen could could have some images (or whatever) such as this: http://www.otherdomain.

Re: [PHP] Re: Central authentication for multiple sites

2003-09-29 Thread Fraser Campbell
On Monday 29 September 2003 15:58, you wrote: > Like someone else mentioned, use sessions or something like them. The key > is you're passing a unique id around for each person that logs in. When > they go to another site, this ID must go with them, so that means they can > only get to the other s

Re: [PHP] Re: Central authentication for multiple sites

2003-09-29 Thread CPT John W. Holmes
From: "Fraser Campbell" <[EMAIL PROTECTED]> > On Monday 29 September 2003 15:33, Kevin Stone wrote: > > > > If all domains have access to the same database then there is absolutely > > nothing preventing you from using a Cookie. Have a normal login on > > Domain1.com. Once authenticated produce a

Re: [PHP] Re: Central authentication for multiple sites

2003-09-29 Thread Fraser Campbell
On Monday 29 September 2003 15:33, Kevin Stone wrote: > If all domains have access to the same database then there is absolutely > nothing preventing you from using a Cookie. Have a normal login on > Domain1.com. Once authenticated produce a random ID and store it in the > database. Store the I

RE: [PHP] Re: Central authentication for multiple sites

2003-09-29 Thread Vail, Warren
age- From: Kevin Stone [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 12:33 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Central authentication for multiple sites If all domains have access to the same database then there is absolutely nothing preventing you from using a Cookie. Ha

[PHP] Re: Central authentication for multiple sites

2003-09-29 Thread Kevin Stone
If all domains have access to the same database then there is absolutely nothing preventing you from using a Cookie. Have a normal login on Domain1.com. Once authenticated produce a random ID and store it in the database. Store the ID in a cookie then Redirect the client to the desired domain