Guild Wars stat tracking The idea behind this is to track multiple characters individual stats as well as account stats.
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.
 
 
 
 
 

17 righe
538 B

  1. <?php
  2. $pagetitle = "Logging Out";
  3. include_once ('header.php');
  4. if (isset($_GET['action'])) {
  5. $logout = $_GET['action'];
  6. } else {
  7. $logout = $_POST['action'];
  8. }
  9. if ($logout == "logout"){
  10. session_unset();
  11. session_destroy();
  12. header("refresh:2;url=index.php");
  13. echo '<CENTER>You have been logged out ...<BR />Returning to login screen in a few seconds</CENTER>';
  14. } else {
  15. echo '<CENTER>Something went wrong, you haven\'t been logged out!<BR /><BR />Please click <A HREF="logout.php" CLASS="navlink">HERE</A> to try again</CENTER>';
  16. }
  17. ?>