PHP Cookie

setcookie() function defines a cookie. Cookie must be sent before any output of the web page.

setcookie($name, $value, $expire, $path, $domain, $secure, $httponly)
$name: cookie name, optional
$value: cookie value, optional
$expire: time for the cookie to expire, in seconds, optional
$path: path the cookie will work. if "/", it works on the whole domain, optional
$domain: domain the cookie will work. "endmemo.com" works for all like "www.endmemo.com" and "tutorial.endmemo.com", optional
$secure: worked only over a secure HTTPS protocol, default is FALSE, optional
$httponly: work only over a HTTP protocol, default is FALSE, optional

<?PHP
setcookie("login","mike"); //set cookie "login" with value "mike"
setcookie("login","mike", time()+3600); //expire after 1 hour
setcookie("login","mike", time()+3600,"/program/","endmemo.com"); 
//expire after 1 hour
echo "$_COOKIE["login"]";  //show cookie value
?>

To delete cookie, set its expiration time to the past:

<?PHP
setcookie("login","mike", time()-60); //expired 1 minute ago
?>



:: PHP Tutorials Home ::
PHP String Functions
 • concatenation • echo
 • ereg • ereg_replace
 • explode • htmlspecialchars
 • preg_match • preg_replace
 • preg_split • print,sprintf
 • regular expr. • str_replace
 • strcmp • strpos
 • strrev • strrpos
 • strtr • substr
 • substr_replace
PHP Array Functions
 • array_diff • array_flip
 • array_intersect • array_key_exists
 • array_keys • array_merge
 • array_pop • array_push
 • array_rand • array_search
 • array_splice • array_unshift
 • array_values • asort & arsort
 • count • in_array
 • ksort • shuffle
 • sort
PHP Data Types
 • array • associative array
 • date & time • number
 • class, object • regular expression
 • string • variables
PHP Loop & Conditions
 • continue & break • for loop
 • foreach • if else
 • not equal • while
PHP File System Functions
 • copy • delete, unlink
 • dirname • download url
 • file_exists • is_file
 • mkdir • read file
 • scandir • write file
PHP Popular Topics
 • ajax • clone
 • comments • constants
 • cookie • database
 • defined • die
 • form validation • gd, draw images
 • global variables • header url
 • heredoc • mail
 • pass by reference • print
 • regular expr. • sessions
 • threads • xml parse
PHP Math Functions
 • abs • cos
 • exp • floor & ceil
 • fmod • log
 • max & min • pow
 • round • sin
 • sqrt • tan
endmemo.com © 2024  | Terms of Use | Privacy | Home