Upload of the files

Added the already existing files to the repository
This commit is contained in:
foin137
2020-03-27 19:57:00 +01:00
parent 2f6b16e4f0
commit de1a653a5c
7 changed files with 4613 additions and 0 deletions

15
reload.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
header("Content-Type: text/html; charset=utf-8");
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";
$spielID = (int)$_GET['game'];
$id = (int)$_GET['id'];
if ($Result = $mysqli->query("SELECT * FROM ".$spielID."_spieler WHERE id = $id"))
{
$temp = $Result->fetch_assoc();
echo $temp['reload'];
}
?>