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.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

9 líneas
309 B

  1. <?php
  2. // tie everything together from here hopefully, might not even need the connection info?
  3. include_once 'gw-connect.php';
  4. $con = new mysqli(DATABASE_HOST, DATABASE_USER, DATABASE_PASS, DATABASE_NAME);
  5. if ($con->connect_errno > 0){
  6. die ('Unable to connect to database [' . $db->connect_errno . ']');
  7. }
  8. ?>