RE: [PHP] Re: Cookie Expiry Dates? From: Adrian Ciutureanu (adrian.ciutureanu <email protected>)
Date: 07/11/01

you probably mean
$cookie_expire = time() + 86400 * 365;

> -----Original Message-----
> From: James Holloway [mailto:james <email protected>]
> Sent: 11 iulie 2001 16:02
> To: php-general <email protected>
> Subject: [PHP] Re: Cookie Expiry Dates?
>
>
> Hi Jeff,
>
> Yes, use time()
>
> Example.... 86400 seconds in a day. 3600 in an hour. Use some basic
> maths:
>
> $cookie_expire = time() * 86400 * 365; // Sets cookie for a
> year (365 days).
>
> James.
>
> "Jeff Lewis" <jeff <email protected>> wrote in message
> news:006101c10a08$874f93c0$76a1a8c0 <email protected>
> I'd like to set a cookie that never expires or at least one
> that lasts a
> month, how can I set it? Does it have to be with time?
>
> I am using SetCookie.
>
> Jeff
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: php-general-unsubscribe <email protected>
> For additional commands, e-mail: php-general-help <email protected>
> To contact the list administrators, e-mail:
> php-list-admin <email protected>
>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>