Good morning,
I have tried a lot of codes in order to unset some cookies from a simple PHP form, but it's impossible. I tried with "unset", then I tried with "setcookie with a negative date", but they are still in my browser.
How can I unset the cookies? That's how I set the cookies:
setcookie("name", $name, time()+120);
That's how I'm trying to unset the cookies:
setcookie('name',null, -1, '/');
Why they are still in my browser?
Thanks,
Regards,