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.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

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