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