Hi, I was thiking about cookies and I found a good problem to me. When I execute:
setcookie("cookie",$var,time()+100);
the expiration date of cookie will be the date on the server plus 100 seconds.
But the time that will be checked to expire the cookie is the local date.
So, if my local machine have the clock 5 minutes ahead, so my cookie will live 5 minutes less.
There is any solution to this?
Thank you any comments.