Re: [PHP] How to resume session by id?

2001-08-17 Thread Darius Ivanauskas
On Thu, 16 Aug 2001, Renze Munnik wrote: On Thu, Aug 16, 2001 at 05:41:47PM +0200, Darius Ivanauskas wrote: What we have here: registering variable $Session into current session. This code works perfectly if session id is propogated normally. Bu what i need is to set session_id and

RE: [PHP] How to resume session by id?

2001-08-16 Thread Niklas Lampen
Link in HTML like a href=http://www.myserver.com/myfile.php??=SIDLink/a And on the myfile.php you have to do this in the beginning of file: session_start(); if (session_is_registered(Session)) { /* This code is run if Session called Session is registered */ }; Hopefully this helps you

RE: [PHP] How to resume session by id?

2001-08-16 Thread Darius Ivanauskas
On Thu, 16 Aug 2001, Niklas Lampen wrote: Link in HTML like a href=http://www.myserver.com/myfile.php??=SIDLink/a And on the myfile.php you have to do this in the beginning of file: session_start(); In this place it starts a new session because it didn't gets session_id neither trough

RE: [PHP] How to resume session by id?

2001-08-16 Thread Niklas Lampen
: [PHP] How to resume session by id? On Thu, 16 Aug 2001, Niklas Lampen wrote: Link in HTML like a href=http://www.myserver.com/myfile.php??=SIDLink/a And on the myfile.php you have to do this in the beginning of file: session_start(); In this place it starts a new session because

RE: [PHP] How to resume session by id?

2001-08-16 Thread Darius Ivanauskas
Lampen Cc: [EMAIL PROTECTED] Subject: RE: [PHP] How to resume session by id? On Thu, 16 Aug 2001, Niklas Lampen wrote: Link in HTML like a href=http://www.myserver.com/myfile.php??=SIDLink/a And on the myfile.php you have to do this in the beginning of file: session_start