The value of a cookie can be modified by resetting the cookie
setcookie("user", "John", time() + 86400, "/"); // assuming there is a "user" cookie already
Cookies are part of the HTTP header, so setcookie() must be called before any output is sent to the...