Guild Wars stat tracking The idea behind this is to track multiple characters individual stats as well as account stats.
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- </center>
- <?php
- echo '<hr>';
- if (isset($_SESSION['prefaccname']) && ($_SESSION['prefcharname'])) {
- echo '<center>| Currently selected game account: <b>' . $_SESSION['prefaccname'] . '</b> | Current character: <b>' . $_SESSION['prefcharname'] . '</b> |</center><br />';
- }
- // the footer just adds a logout button at the bottom of every page for the currently logged in user
- if (isset($_SESSION['userid']) && ($_SESSION['username'])) {
- echo '<center><br /><br /><form method="post" action="logout.php"><input type="hidden" name="action" value="logout" ><input type="submit" value="Logout"></form></center>';
- }
- ?>
- </body>
- </html>
|