Yaacov Deane
0
Q:

php set cookie

setcookie("cookiename", "cookievalue", time(), ".mydomain.tld", "/")

// coookiename: The name of your cookie
// cookievalue: The value of your cookie
// Time: The expiration date of your cookie. If you plan to make a product for the EU, it's 13 months max.
// .mydomain.tld: The domain that your webpage is using. You can only use the domain that the PHP file is on. Adding a dot before your domain will cover all subdomains.
// "/": This is the folder where your cookie will apply. If you want a specific cookie for the /mySpecialSuperSecretPages folder, you have to set /mySpecialSuperSecretPages
// Check the source for more options.
1
setcookie($cookiename, $cookievalue, time() + (86400 * 30), "/"); // 86400 = 1 day
0
setcookie(name, value, expire, path, domain, secure, httponly);
// Only the name parameter is required.
// Must appear BEFORE the <html> tag.
// Saved in $_COOKIE[name]
9
setcookie("cookie_name", "type_on_cookie", expiry_time(), "/");
3
setcookie('username',$username,time()+60*60*24*365);
// 'Force' the cookie to exists
$_COOKIE['username'] = $username;
1
<?php $Month = 2592000 + time();//this adds 30 days to the current timesetcookie(UserVisit, date("F jS - g:i a"), $M
0

New to Communities?

Join the community