for delete cookie in PHP:
I read on the internet, and on my course slide too, that if we set expiration date to "time()-3600" we can't stay sure the cookie will be removed by the client,
because the client time and the server time can differ.
I agree with last statement, but why might the client not delete the cookie if the "time()" function return epoch value? it isn't absolute value?
I think if we set time()-3600, the response header set-cookie have expiration date as an absolute value, and the browser can interpret the value for find the data (as client local data) when the cookie is expired.
I'm doing it wrong?