Another way, like if you want the cookie to be deleted by the user clicking log off or something like that, and not closing the browser, do something like this:
<?
setcookie("Cusername","");
setcookie("Cpassword","");
?>
What your doing is just making the cookie equal nothing, making it a no longer valid cookie. Hope this helps! 🙂
-Jason Rottman
jrottman@usa.net