PHP Clear Cookies
Cookies are deleted in a very tricky way - by setting
the cookie's 'death' date to the current moment
in time. See the example:
<?php
setcookie('test', '', time());
?>
Cookies are deleted in a very tricky way - by setting
the cookie's 'death' date to the current moment
in time. See the example:
<?php
setcookie('test', '', time());
?>