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