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. ?>