When I want to remove a Cookie I try
unset($_COOKIE[\'hello\']);
I see in my cookie browser from firefox that the cookie still exists. How
Just set the value of cookie to false in order to unset it,
false
setcookie('cookiename', false);
PS:- That's the easiest way to do it.