Jump to content

Recommended Posts

weird, it worked the first time, but now it still doesn't log me out...

 

login.php:
<?php
setcookie('id', $userinfo['id'], time()+60*60*24*31*3 , '/');
header("Location: " . $_POST['redirect']);
?>

logout.php
<?php
setcookie('id', '', time()-60*60*24*2);
unset($_COOKIE['id']);

header("Location: ".$_POST['redirect']);
exit;
?>

Sometimes the header tag does not run well with sessions and cookies try this instead:

 

logout.php
<?php
setcookie('id', '', time()-60*60*24*2);
unset($_COOKIE['id']);

echo '<script type=text/javascript>location.href="' . $_POST['redirect'] . '";</script>';
//header("Location: ".$_POST['redirect']);
exit;
?>

Sometimes the header tag does not run well with sessions and cookies try this instead:

 

logout.php
<?php
setcookie('id', '', time()-60*60*24*2);
unset($_COOKIE['id']);

echo '<script type=text/javascript>location.href="' . $_POST['redirect'] . '";</script>';
//header("Location: ".$_POST['redirect']);
exit;
?>

 

boo why don't they fix that? that Jscript creates a back button circle :(

why does this not work....

 

setcookie('id', '', time()-60*60*24*2);
unset($_COOKIE['id']);

echo '<meta http-equiv="refresh" content="5; url='.$_POST['redirect'].'">';
require 'header.php';
echo 'You are now logged out! Redirecting...';

 

everything displays correctly but.. that damn cookie is still there

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.