Guild Wars stat tracking The idea behind this is to track multiple characters individual stats as well as account stats.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

10 rindas
482 B

  1. <?php
  2. $pagetitle = "Add Characters";
  3. include_once ('header.php');
  4. echo 'add a new character!';
  5. echo '<form action="addaccounts.php" method="post"><table>';
  6. echo '<caption style="white-space: nowrap; overflow: hidden;">Add character to account: ' . $_SESSION['prefaccname'] . '</caption>';
  7. echo '<tr><td><input type="text" name="newchar" size="19" required></td><td><input type="submit" value="Add character"></td></tr>';
  8. echo '</table></form><br />';
  9. include_once ('footer.php');
  10. ?>