vote up 2 vote down star
1

When I want to remove a Cookie I try

unset($_COOKIE['hello']);

I see in my cookie browser from firefox that the cookie still exists. How can I really remove the cookie?

flag

74% accept rate

7 Answers

vote up 1 vote down check

Note that the cookie and the session are completely unaware of each other. They are related, but detached.

Think about the session cookie like a ticket that let's you in and out of a nightclub. If you still have the ticket, but the club is closed you can't get back in. Like wise, if the club is still open but you lose your ticket you can't get in regardless.

Analogies aside, you don't kill a session by "unsetting" the cookie. You can trash the session with session_destroy, or if you want to log a user out just unset values held in the session that indicate that someone is logged in. You can let the browser keep the cookie if you like, it's just a useless ticket.

link|flag
vote up 8 vote down

Set the value to "" and the expiry date to yesterday (or any date in the past)

setcookie("hello", "", time()-3600);

Then the cookie will expire the next time the page loads.

link|flag
How about setting the time to 0 (the epoch)? =] – strager Mar 27 at 0:00
If you put a date too far in the past, IE will bark and igores it, i.e. the value will not be removed. – Julien Mar 27 at 0:04
vote up 2 vote down

See the sample labelled "Example #2 setcookie() delete example" from the PHP docs. To clear a cookie from the browser, you need to tell the browser that the cookie has expired... the browser will then remove it. unset as you've used it just removes the 'hello' cookie from the COOKIE array.

link|flag
vote up 2 vote down

If you set the cookie to expire in the past, the browser will remove it. See setcookie() delete example at php.net

link|flag
vote up 2 vote down

That will unset the cookie in your code, but since the $_COOKIE variable is refreshed on each request, it'll just come back on the next page request.

To actually get rid of the cookie, set the expiration date in the past:

// set the expiration date to one hour ago
setcookie("hello", "", time()-3600);
link|flag
vote up 0 vote down

Thanks so far.

When I login I do:

setcookie("loggedin",true,time()+3600,'/');

And to logout i do

setcookie ('loggedin', false, time() - 4800,'/');

But appearantly when I want to check if I am logged it when I restart my browser I am not logged in. This is the way I check it:

if(isset($_COOKIE['loggedin']) and ($_COOKIE['loggedin'] == true) ){

Is this not the way to check if I am logged in?

Secondly, is there a way to combine cookies with sessions?

link|flag
1  
Good question. I can't recommend strongly enough that you do NOT handle login this way; anyone can create a cookie on their system that gets sent along to your server and, poof!, they'll be logged in. Use a session instead... the login token must reside server-side only, and not be part of a cookie. – Jarret Hardie Mar 26 at 15:21
PHP uses cookies to implement a session. A PHP site creates a cookie called PHPSESS that identifies the session object on the server where the user's session info is stored. – Jarret Hardie Mar 26 at 15:22
Ahem. That would be PHPSESSID – Jarret Hardie Mar 26 at 15:26
And what about the first question? – sanders Mar 26 at 15:39
vote up 0 vote down

You could set a session variable based on cookie values

session_start();

if(isset($_COOKIE['loggedin']) && ($_COOKIE['loggedin'] == "true") ){ $_SESSION['loggedin'] = "true"; }

echo ($_SESSION['loggedin'] == "true" ? "You are logged in" : "Please Login to continue");

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.