Page 1 of 1

PHP COOKIES!!

Posted: Mon Apr 07, 2008 1:20 pm
by aml391
I need help hooking up a php cookie. I have tired many different options but can't get anything to work. I am trying to get setup the cookie to remember this pages login section. http://www.lknrealtygroup.com/searchForm2.php So, when the user goes back to the page later on in the day they don't have to fill it out it will take them straight to this page. http://www.lknrealtygroup.com/searchByArea.php Would love the help. Thanks.

Re: PHP COOKIES!!

Posted: Mon Apr 07, 2008 1:51 pm
by John Cartwright
What have you tried?

Have to looked at setcookie()?

Re: PHP COOKIES!!

Posted: Mon Apr 07, 2008 1:56 pm
by aml391
I have tired this

if (!isset($_COOKIE['lknCookie'])) {
// if a cookie does not exist
// set it
$hourdiff = "3"; $melbdate = date("l, d F Y h:i a",time() + ($hourdiff * 3600));
setcookie("lknCookie", "$melbdate", mktime()+86400*30, "/") or die("Could not set cookie");
$msg3 = "Cookie 3 Set.";
}
else {
// if a cookie already exists
$msg3 = "Cookie 3 Already Set";
}

No I have not yet tired setCookie();