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.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

20 líneas
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>