Click to See Complete Forum and Search --> : Cookie Problems


kathrync2003
09-11-2007, 12:46 PM
Hi,

I have written the following cookie code and I have 2 issues that I can't seem to figure out/understand...

1) How do I set the cookies to stay active for 5 hours
2) How do I delete this cookie? I would like to have a link (logoff) where I delete the cookies.

Any help would be appreciated.



if (isset($cookie_data))
{
$cookie_info = explode("&", $cookie_data);
$f_name = $cookie_info[0];
$f_pass = $cookie_info[1];
$visits = $cookie_info[2];
}

if ($f_name == "")
{
print "COOKIES GONE";
exit();
}

Yelgnidroc
09-11-2007, 02:24 PM
Have you looked here:

http://uk3.php.net/manual/en/function.setcookie.php