RE: [PHP] 1 session, 2 subdomains

2002-06-03 Thread Jason Dulberg
ge > * http://www.calevans.com > * > > > -Original Message- > From: Jason Dulberg [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 03, 2002 3:08 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP] 1 session, 2 subdomains > > > I am c

RE: [PHP] 1 session, 2 subdomains

2002-06-03 Thread Cal Evans
PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] 1 session, 2 subdomains I am currently storing the session hash/login info (userid, session hash, host, etc.) in the db and send it to the next domain in the redireted URL. How would the handler work if no session info isn't

RE: [PHP] 1 session, 2 subdomains

2002-06-03 Thread Jason Dulberg
I am currently storing the session hash/login info (userid, session hash, host, etc.) in the db and send it to the next domain in the redireted URL. How would the handler work if no session info isn't being passed to the subdomain? Thanks! Jason > From: Cal Evans [mailto:[EMAIL PROTECTED]] >

RE: [PHP] 1 session, 2 subdomains

2002-06-03 Thread Cal Evans
Store your session information in a database. Assign it an ID and send that ID to the cookie or the URL in the new domain. Then you can write a session handler that retrieves the session info form the database. =C= * * Cal Evans * Journeyman Programmer * Techno-Mage * http://www.calevans.com *

RE: [PHP] 1 session, 2 subdomains

2002-06-03 Thread Thalis A. Kalfigopoulos
On Mon, 3 Jun 2002, Jason Dulberg wrote: > The subdomain's are all on the same server and all have their docroot set to > the same directory. I'm mainly using subdomains as a way to keep the site > organized and to have different graphics based on their sport location. > > So if I pass to the ne

RE: [PHP] 1 session, 2 subdomains

2002-06-03 Thread Jason Dulberg
The subdomain's are all on the same server and all have their docroot set to the same directory. I'm mainly using subdomains as a way to keep the site organized and to have different graphics based on their sport location. So if I pass to the next subdomain, do I just use session_start() if the p

Re: [PHP] 1 session, 2 subdomains

2002-06-03 Thread Thalis A. Kalfigopoulos
On Mon, 3 Jun 2002, Jason Dulberg wrote: > I am working on a sports website that will have a subdomain for each major > sport. There is a login panel on the main domain that routes users to the > appropriate subdomain depending on the sport that they are in. Everything > seems to be ok with cooki