PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by NaRzY [PHP]Actions:
Replies: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
error_reporting(0); if (!$stat[id]){ print"Error: You Must Login to View This Page.<br>"; include("footer.php"); exit; } <h3 align="center">Claim Previous Ordered Points or VIP:</h3> <form name="form1" method="post" action="index.php?page=claim&action=gogo"> <p>Please fill out the following form to claim your previous Ordered Points and VIP. </p> <p> <label> Please enter your <strong>OLD</strong> Username and Password for The First LegendWar or LW 2.0. <br> Username: <input type="text" name="claimusername" id="claimusername"> <br> Password: <input type="text" name="claimpass" id="claimpass"> <br> print" <input type=hidden name=claimer value=$stat[id]> "; <br> <br> What Are You Claiming:</label> <br> <label> <select name="product" id="product"> <option value="vip">VIP</option> <option value="pts" selected>Points</option> <option value="both">Both</option> </select> </label> </p> <p>When did you order Points or VIP:<br> <label> <select name="server" id="server"> <option value="LW1">The First LegendWar</option> <option value="LW2">LegendWar 2.0</option> </select> </label> <br> Note: If you ordered VIP or Points on Both Versions of LegendWar, Please file 2 Seperate Claims. </p> <p> <label> <input type="submit" name="submit" id="submit" value="Go Go"> </label> </p> </form> <p align="left"> </p> if ($action == 'gogo'){ $claimer = $_GET['claimer']; $product = $_GET['product']; $server = $_GET['server']; $claimusername = $_GET['claimusername']; $claimpass = $_GET['claimpass']; mysql_query("insert into claim (claimer, product, server, username, pass) values('$claimer','$product','$server','$claimusername','$claimpass')")or die("Could not register."); print"Claim Submited"; } |