[PHP] Re: problem with sessions config.

2008-03-22 Thread Nilesh Govindrajan
N . Boatswain wrote: Hello guys; i'm having a problem with session behavior; i'm going straight to it, but first some considerations: PHP Version 5.2.5IIF 5.1Running on localhost (XP machine)I start sessions at the top of every page. A the start of a test page, just as example, i do the

RE: [PHP] Re: problem with sessions config.

2008-03-22 Thread N . Boatswain
From: [EMAIL PROTECTED] Subject: [PHP] Re: problem with sessions config. N . Boatswain wrote: Hello guys; i'm having a problem with session behavior; i'm going straight to it, but first some considerations: PHP Version 5.2.5IIF 5.1Running on localhost (XP machine)I start sessions

[PHP] Re: Problem with Sessions

2004-02-19 Thread Jas
Sheni R. Meledath wrote: Hello: Session is not working in PHP script file when executed through the browser IE 5.0 on Windows 2000 platform. In IE latest versions the script is working fine. Does anybody have any solution or report related to this. PHP version on the server is 4.3. Sheni R

[PHP] Re: Problem with sessions.

2002-12-20 Thread sasha
On Thu, 19 Dec 2002 16:43:10 -0700, Mike Hillyer [EMAIL PROTECTED] wrote: Hello All; Please forgive me if I am repeating an often asked question, but I am having a problem with sessions. I simply cannot get them to work. The sample code I provide works on another server perfectly, this is the

Re: [PHP] Re: Problem with sessions.(Again Sorry :)

2002-07-21 Thread Richard Lynch
Don't cram things into $_SESSION. Use this: session_register('uid'); global $uid; $uid = $uinfo[0]; With PHP 4.2, you don't have to use session_register. You can do it exactly like the OP is. I do it all the time. Whether that is a feature or a bug, I don't know. It happens to work

RE: [PHP] Re: Problem with sessions.(Again Sorry :)

2002-07-21 Thread John Holmes
From: Richard Lynch [mailto:[EMAIL PROTECTED]] Don't cram things into $_SESSION. Use this: session_register('uid'); global $uid; $uid = $uinfo[0]; With PHP 4.2, you don't have to use session_register. You can do it exactly like the OP is. I do it all the time. Whether that is a

[PHP] Re: Problem with sessions.

2002-05-13 Thread Michael Virnstein
php4 sessions or self made? own session_set_save_handler? Let us see the login code! Ok...that's how i would do it: After successful login i'd register a variable or set the registered variable to a specific value. Now i check on every page: If (!IsSet($_SESSION[myLoginVar] ) ||