Re: [PHP] to pass session from one websever to another webserver

2005-05-05 Thread Rory Browne
In that case you're probably best to have a single source for the session data, and simply pass the SessionID as a $_GET variable in the URL. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] to pass session from one websever to another webserver

2005-05-04 Thread Balwant Singh
thx, actually, i want to pass session of 1st server to 2nd server and vice versa i.e. to pass session of 2nd server to 1st server and want to use them in both the servers. with best wishes balwant On Wed, 2005-05-04 at 22:04, Rory Browne wrote: > Elaborate. > > Do you want to pass the sesson f

Re: [PHP] to pass session from one websever to another webserver

2005-05-04 Thread Rory Browne
Elaborate. Do you want to pass the sesson from server_1 to server_2, and use the session on server_2 instead of server_1, or do you want to use the session on both servers at the same time, or switch frequently between both machines? On 04 May 2005 18:24:07 +0530, Balwant Singh <[EMAIL PROTECTED]

Re: [PHP] to pass session from one websever to another webserver

2005-05-04 Thread Petar Nedyalkov
On Wednesday 04 May 2005 15:54, Balwant Singh wrote: > hi to all > > i want to pass session variables from one websever to another > webserver. may please help. Solution 1: Use a custom session handler. Solution 2: Disable cookies when using sessions (use GET to pass the session ID) and use a s