Hi, i need to set a cookie to expire in 5 hours. I normally use an hour at +3600 but i have never done 5 hours before so will this work or should i use a different value.
PHP Code:
setcookie("Sitecheck", $value, time()+18000);
Comment