Just a web script to help track when, where, and what you got from the free treasures scattered about Nightfall in the game Guild Wars.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 rivejä
555 B

  1. <?php
  2. include_once 'gw-connect.php';
  3. $con = new mysqli(DATABASE_HOST, DATABASE_USER, DATABASE_PASS, DATABASE_NAME);
  4. if ($con->connect_errno > 0){
  5. die ('Unable to connect to database [' . $db->connect_errno . ']');
  6. }
  7. $sql = "SELECT charname FROM `playername` WHERE `userid` = '1' ORDER BY `charname` ASC"; //need to make userid a variable
  8. if (!$result = $con->query($sql)){
  9. die ('There was an error running the query [' . $con->error . ']');
  10. }
  11. while ($row = $result->fetch_array()){
  12. echo 'Please select a character to continue' . $row['charname'];
  13. }
  14. ?>