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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,089 questions

40,774 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
...