diff --git a/RBXLegacySite/games.php b/RBXLegacySite/games.php new file mode 100644 index 0000000..5b2a378 --- /dev/null +++ b/RBXLegacySite/games.php @@ -0,0 +1,97 @@ + + + +RBXLegacy + + + + + + + + + + +
+ +
+ +
+
+
+ +
+
+
+
+

Games

+ query($sql); +if (!$result) +{ + printf("Error: %s\n", $con->error); +} + +while($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) +{ +echo "
"; +echo "
"; +echo "

".noHTML($row['name'])."

"; +echo "

Map: ".noHTML($row['map'])."

"; +echo "

Client: ".noHTML(base64_decode($row['client']))."

"; +echo "

Player Limit: ".noHTML($row['playerlimit'])."

"; +echo "

Creation Time: ".noHTML($row['date'])."

"; +$stringbuild = $row['ip']."|".$row['port']."|".$row['client']; +$encryptstring = base64_encode($stringbuild); +$url = "RBXLegacy://".$encryptstring; +echo "
"; +echo "
"; +echo "
"; +$ip = base64_decode($row['ip']); +if($_SERVER['REMOTE_ADDR'] == $ip) +{ +echo "
"; +echo "
"; +echo "
"; +} +echo "
"; +echo "
"; +echo " "; +} + +$con->close(); +?> +
+
+
+
+ + +
+ +