I have this code that setted when login check is fine:
if((isset($_POST[\"remember_me\"]))&&($_POST[\"remember_me\"]==1))
{
setcookie(\'email
Just set the value of cookie to false
in order to unset it,
setcookie('cookiename', false);
That's the easiest way to do it.
Check in your browser for the directory where the cookie operates. And unset it by specify the path the cookie have. Like in the example if the cookie directory is /aforum/
setcookie ("email","",time()-1,"/aforum/","http:// yourdomain.com");