* Thus wrote Hank TT ([EMAIL PROTECTED]):
> Hi,
> 
> I've read the official manual on session handling, as well as the section in
> "PHP Developer's Cookbook" (2/e, Hughes & Zmievski).  But I still cannot
> make a cookie persist across browser sessions -- very frustrating.
> 
> I use PHP 4.1.1 running as a CGI in Win32.
> 
> Here is a snippet:
> 
> ======================
> $lifetime =  time() + 8600;
> 
> session_name('app');
> session_start();
> ....
> session_set_cookie_params ($lifetime, '', '.site.com');
>     // session_get_cookie_params returns the expected values

If possible try setting the cookie params before session start.


Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

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

Reply via email to