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.
|
- <?php
- if (isset($_SESSION['userid'])) {
- $stmtview = $con->prepare("SELECT * FROM gwtitles ORDER BY titlename");
- $stmtview->execute();
- $result = $stmtview->get_result();
- while ($row = $result->fetch_assoc()) {
- $tid = $row['titlenameid'];
- $tname = $row['titlename'];
- $tnr = $row['titlemaxrank'];
- echo '<option value="' . $tid . '">' . $tname . ' (' . $tnr . ')</option>';
- }
- $stmtview->close();
- }
- ?>
|