Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,939 questions

51,876 answers

573 users

How to remove a cookie with PHP

2 Answers

0 votes
/*
bool setcookie ( string $name [, string $value = "" [, int $expire = 0 
                                                    [, string $path = "" 
                                                    [, string $domain = "" 
                                                    [, bool $secure = false 
                                                    [, bool $httponly = false ]]]]]] )
 
*/
 
setcookie($cookie_name, null, -1);

if (!isset($_COOKIE[$cookie_name])) 
    echo "Cookie named 'user_name' is not set";
      
/*
run:
  
Cookie named 'user_name' is not set 

*/

 



answered Dec 21, 2015 by avibootz
edited Sep 14, 2017 by avibootz
0 votes
//setcookie("user", "Tim", time() + 86400, "/"); 

// Creates a cookie with name "user"
// (Optional) Value of the cookie is "Tim"
// (Optional) Cookie will expire in 1 day (86400 seconds)

unset($_COOKIE['user']);

if (isset($_COOKIE['user'])) 
    echo 'User name: ' . $_COOKIE['user'];
else
    echo 'Cookie is not Set';


 
/*
run: 

Cookie is not Set
  
*/ 

 



answered Sep 14, 2017 by avibootz
...