remove cookies php

29

if (isset($_COOKIE['key'])) {
    unset($_COOKIE['key']);
    setcookie('key', '', time() - 3600, '/'); // empty value and old timestamp
}
unset($_COOKIE['hello']);

Comments

Submit
0 Comments