Re: Sessions again....

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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 <tuffguy@xxxxxxxxxxxx> wrote:
> So what is your question...?
> 
> ----- Original Message -----
> From: "Suhas" <psuhas@xxxxxxxxx>
> To: "php-general" <php-general@xxxxxxxxxxxxx>
> Sent: Thursday, August 04, 2005 4:13 PM
> Subject:  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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux