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.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
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>