-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathgetrobux.php
More file actions
50 lines (47 loc) · 1.53 KB
/
getrobux.php
File metadata and controls
50 lines (47 loc) · 1.53 KB
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
<?php
// define variables and set to empty values
$username = $robux = $buildersclub = $creategroups = $paidaccess = $adfree = $sellstuff = $virtualstuff = $bounsgear = $bcbetafeatures = $tradesystem = "";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$username = test_input($_POST["username"]);
$robux = test_input($_POST["robux"]);
$buildersclub = test_input($_POST["buildersclub"]);
$creategroups = test_input($_POST["creategroups"]);
$paidaccess = test_input($_POST["paidaccess"]);
$adfree = test_input($_POST["adfree"]);
$sellstuff = test_input($_POST["sellstuff"]);
$virtualstuff = test_input($_POST["virtualstuff"]);
$bounsgear = test_input($_POST["bounsgear"]);
$bcbetafeatures = test_input($_POST["bcbetafeatures"]);
$tradesystem = test_input($_POST["tradesystem"]);
}
function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}
?>
<?php
echo "<h2>Your Input:</h2>";
echo "Username: " + $username__toString();
echo "<br>";
echo "Robux: " + $robux;
echo "<br>";
echo "Builders Club: " + $buildersclub__toString();
echo "<br>";
echo "Create Groups: " + $creategroups;
echo "<br>";
echo "Paid Access: " + $paidaccess;
echo "<br>";
echo "Ad Free: " + $adfree;
echo "<br>";
echo "Sell Stuff: " + $sellstuff;
echo "<br>";
echo "Virtual Stuff: " + $virtualstuff;
echo "<br>";
echo "Bouns Gear: " + $bounsgear;
echo "<br>";
echo "BC Beta Features: " + $bcbetafeatures;
echo "<br>";
echo "Trade System: " + $tradesystem;
?>