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.
|
- <?php
- $toonid = $_POST['playerid'];
- $action = $_POST['gwaction'];
- if ($action == 1){
- echo '<body onload="javascript:submitForm()">';
- 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){
- echo '<body onload="javascript:submitForm()">';
- echo '<FORM METHOD="POST" ACTION="gw-pull.php" NAME="insert"><INPUT TYPE="HIDDEN" NAME="cname" VALUE="' . $toonid . '"><INPUT TYPE="SUBMIT" ID="clkInsert"></FORM></BODY>';
- } else {
- echo 'You shouldn\'t be seeing this, something went horribly horribly wrong!';
- }
- ?>
|