Smaller code changes - especially the switch from includes and constants to the new folder

This commit is contained in:
eYeWoRRy
2021-12-26 17:11:45 +01:00
parent 4263550e70
commit d264869b41
6 changed files with 127 additions and 286 deletions
+3 -3
View File
@@ -3,7 +3,7 @@
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header('Pragma: no-cache');
include "includes.php";
include "includes/includes.php";
$spielID = (int)$_GET['game'];
$id = (int)$_GET['id'];
if ($Result = $mysqli->query("SELECT * FROM ".$spielID."_spieler WHERE id = $id"))
@@ -11,5 +11,5 @@
$temp = $Result->fetch_assoc();
echo $temp['reload'];
}
?>
?>