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.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

20 lignes
558 B

  1. <!DOCTYPE html>
  2. <HTML>
  3. <HEAD>
  4. <link rel="stylesheet" type="text/css" href="gw-style.css">
  5. <TITLE>Logging out</TITLE>
  6. </HEAD>
  7. <BODY>
  8. <?php
  9. session_start();
  10. if (isset($_POST['logout'])){
  11. session_unset();
  12. session_destroy();
  13. header("refresh:3;url=gw-index.php");
  14. echo '<CENTER>You have been logged out ...<BR />Returning to login screen in a few seconds</CENTER>';
  15. } else {
  16. echo '<CENTER>Something went wrong, you haven\'t been logged out!<BR /><BR />Please click <A HREF="gw-logout.php" CLASS="navlink">HERE</A> to try again</CENTER>';
  17. }
  18. ?>
  19. </BODY>
  20. </HTML>