set cookie lifetime php max time code example
Example 1: cookie are not set in php
setcookie('username',$username,time()+60*60*24*365);
// 'Force' the cookie to exists
$_COOKIE['username'] = $username;
Example 2: infinite cookie good php ?
setcookie("CookieName", "CookieValue", 2147483647);