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.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

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