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.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

11 linhas
496 B

  1. <?php
  2. $toonid = $_POST['playerid'];
  3. $action = $_POST['gwaction'];
  4. if ($action == 1){
  5. echo '<FORM METHOD="POST" ACTION="gw-record.php" NAME="record"><INPUT TYPE="HIDDEN" NAME="playerid" VALUE="'. $toonid . '"><INPUT TYPE="SUBMIT">';
  6. } else if ($action == 2){
  7. echo '<FORM METHOD="POST" ACTION="gw-pull.php" NAME="insert"><INPUT TYPE="HIDDEN" NAME="cname" VALUE="' . $toonid . '"><INPUT TYPE="SUBMIT">';
  8. } else {
  9. echo 'You shouldn\'t be seeing this, something went horribly horribly wrong!';
  10. }
  11. ?>