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.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
484 B

  1. <?php
  2. include_once 'gw-connect.php';
  3. $con = new mysqli(DATABASE_HOST, DATABASE_USER, DATABASE_PASS, DATABASE_NAME);
  4. //post data section
  5. $droptype = mysqli_real_escape_string($con, $_POST['droptype']); //this will stay
  6. $rare = $_POST['gwdrop']; //this will all go away soon
  7. echo 'If this worked then there will be a number here: ' . $rare . ' <BR />';
  8. echo 'The droptype variable is set to ' . $droptype . '<BR />';
  9. echo 'Return to <A HREF="gw-record.php">data recording</A> page';
  10. ?>