Skip to content
Snippets Groups Projects
Select Git revision
  • 5ddb85b24417405b65b1661f9a1a0c4442043f41
  • main default protected
  • rewrite
  • production
4 results

signout.php

Blame
  • signout.php 271 B
    <?php 
    
    $_SESSION['id'] = null;
    $_SESSION['auth'] = false;
    setcookie('keep_me_logged_in', '', time()-3600);
    session_destroy();
    
    ?>
    
    <p>You've been signed out successfully. You may close the page.</p>
    <p><a href="/signin">Sign back in</a> ~ <a href="/">Go to home</a></p>