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トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
756 B

  1. <?php
  2. $toonid = $_POST['playerid'];
  3. $action = $_POST['gwaction'];
  4. echo'<TITLE>Redirecting ...</TITLE>';
  5. if ($action == 1){ //insert dropped items data
  6. echo '<BODY onload="document.record.submit()">';
  7. echo '<FORM METHOD="POST" ACTION="gw-location.php" NAME="record"><INPUT TYPE="HIDDEN" NAME="playerid" VALUE="'. $toonid . '"><INPUT TYPE="SUBMIT" ID="clkRecord"></FORM></BODY>';
  8. } else if ($action == 2){ //view history of dropped items
  9. echo '<BODY onload="document.insert.submit()">';
  10. echo '<FORM METHOD="POST" ACTION="gw-pull.php" NAME="insert"><INPUT TYPE="HIDDEN" NAME="cnameid" VALUE="' . $toonid . '"><INPUT TYPE="SUBMIT" ID="clkInsert"></FORM></BODY>';
  11. } else {
  12. echo 'You shouldn\'t be seeing this, something went horribly horribly wrong!';
  13. }
  14. ?>