Guild Wars stat tracking The idea behind this is to track multiple characters individual stats as well as account stats.
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- <?php
- $pagetitle = "Add Characters";
- include_once ('header.php');
- echo 'add a new character!';
- echo '<form action="addcharacters.php" method="post"><table>';
- echo '<caption style="white-space: nowrap; overflow: hidden;">Add character to account: ' . $_SESSION['prefaccname'] . '</caption>';
- echo '<tr><td><input type="text" name="newchar" size="19" required></td><td><input type="submit" value="Add character"></td></tr>';
- echo '</table></form><br />';
- include_once ('footer.php');
- ?>
|