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个字符
 
 
 

10 行
286 B

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