Guild Wars stat tracking The idea behind this is to track multiple characters individual stats as well as account stats.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

13 satır
627 B

  1. </center>
  2. <?php
  3. echo '<hr>';
  4. if (isset($_SESSION['prefaccname']) && ($_SESSION['prefcharname'])) {
  5. echo '<center>| Currently selected game account: <b>' . $_SESSION['prefaccname'] . '</b> | Current character: <b>' . $_SESSION['prefcharname'] . '</b> |</center><br />';
  6. }
  7. // the footer just adds a logout button at the bottom of every page for the currently logged in user
  8. if (isset($_SESSION['userid']) && ($_SESSION['username'])) {
  9. echo '<center><br /><br /><form method="post" action="logout.php"><input type="hidden" name="action" value="logout" ><input type="submit" value="Logout"></form></center>';
  10. }
  11. ?>
  12. </body>
  13. </html>