Well script is not working as it is supposed to be. Even after 2 hrs I
visit the page the count variable increases by 1 than prevois value.

Any reason why is that so? If my understanding is not correct please correct me.

Thanks
SP


On 8/4/05, James <[EMAIL PROTECTED]> wrote:
> So what is your question...?
> 
> ----- Original Message -----
> From: "Suhas" <[EMAIL PROTECTED]>
> To: "php-general" <php-general@lists.php.net>
> Sent: Thursday, August 04, 2005 4:13 PM
> Subject: [PHP] Sessions again....
> 
> 
> Hello,
>      I am trying to understand how sessions work. I have this code. My
> understanding is after 1 sec of script completion, (may be little
> after that), the session should destroy.
> 
> I understand that it is huge overhead for server, not planning to do
> this but want to understand how it really works.
> 
> This server uses cookie to store session. Setings in php.ini file are
> defaut (1440 and probility is 1)
> 
> 
> ini_set('session.auto_start', '0');
> session_id('SSP');
> session_cache_limiter("nocache");
> ini_set('session.cookie_lifetime', '0');
> ini_set('session.gc_probability', '100');
> ini_set('session.gc_divisor', '100');
> ini_set('session.gc_maxlifetime', '1');
> session_start();
> 
> if(!session_is_registered('count'))
>   session_register('count');
> 
> echo ++$_SESSION['count'];
> 
> Any help will be appriciated!
> 
> Thanks
> SP
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to