How to Delete a Cookie?
By Balu Prasad
How to Delete a Cookie????
Teacher SiliconIndia replied to Balu Prasad Wednesday, March 17, 2010
Hi Balu,
When deleting a cookie you should assure that the expiration date is in the past.
Delete example:
<?php
// set the expiration date to one hour ago
setcookie("user", "", time()-3600);
?>