I have a cookie holding all my form details,
so as If I navigate away from the page, they will be there when I return.

But on my last page, I wish to delete this cookie.
Alas, I do not have a clue.
If anyone can help, please!

this is my cookie file.
http://www.redbrick.dcu.ie/~thelad/cookie.txt

Thanks

    Try this:

    setcookie("CookieName","");

    it works for me.

    Regards

    Darren

    alex wrote:

    I have a cookie holding all my form details,
    so as If I navigate away from the page, they will be there when I return.

    But on my last page, I wish to delete this cookie.

      Failing that actually, try this instead...works better for me at least:

      setcookie ("CookieName");
      setcookie ("CookieName", "", time() - 3600);
      setcookie ("CookieName", "", time() - 3600, "/");

        Write a Reply...