Jump to content

[SOLVED] Cookies Don't Expire


Styles2304

Recommended Posts

I have the user determine whether or not they want to stay logged in on the log in page and this sets a cookie. I'm trying to expire the cooking on log out but it's not happening.

 

<?php
session_start();
session_unset();
session_destroy();
setcookie ("NCF_user_index", "", 1);
header("Refresh: 1; URL=../main.php");
echo "You have been logged out.";
?>

 

I've tried the time()-234908230498 whatever number you want and that had the same effect besides I read that setting the expire time to 1 was the best way since it was one second after January 1st, 1970.

 

Any ideas why this isn't working?

Link to comment
https://forums.phpfreaks.com/topic/124828-solved-cookies-dont-expire/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.