Just a web script to help track when, where, and what you got from the free treasures scattered about Nightfall in the game Guild Wars.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

11 行
307 B

  1. <?php
  2. session_start();
  3. if (isset($_POST['logout'])){
  4. session_unset();
  5. session_destroy();
  6. header("refresh:3;url=gw-index.php");
  7. echo '<CENTER>You have been logged out ...<BR />Returning to login screen in a few seconds</CENTER>';
  8. } else {
  9. echo 'Something went wrong, you haven\'t been logged out!';
  10. }
  11. ?>