Neuer Versuch brauch dringend ne offline datenbank
This commit is contained in:
parent
d5f446a36f
commit
a12055cc76
1 changed files with 17 additions and 5 deletions
22
index.php
22
index.php
|
@ -37,15 +37,26 @@ $sql = "SELECT * FROM cheaterlist ORDER BY addtime DESC;";
|
|||
$result = $conn->query($sql);
|
||||
$number = 1;
|
||||
$getplayersummarie ="http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=E8D51260E5DF95AE8A6DA139D6C80288&steamids=";
|
||||
$avatarid = 0;
|
||||
$fullids
|
||||
while($row = $result->fetch_assoc()){
|
||||
if($row['deleted'])
|
||||
continue;
|
||||
|
||||
$id = explode( "/", $row['url']);
|
||||
|
||||
$fullids = $fullids . end($id) . ",";
|
||||
}
|
||||
|
||||
$fullcallurl = $getplayersummarie . $fullids;
|
||||
$summarie = file_get_contents($fullcallurl);
|
||||
$temp_summarie = json_decode($summarie, true);
|
||||
|
||||
while($row = $result->fetch_assoc()){
|
||||
if($row['deleted'])
|
||||
continue;
|
||||
$id = explode( "/", $row['url']);
|
||||
$comburl_summarie = $getplayersummarie . end($id);
|
||||
$summarie = file_get_contents($comburl_summarie);
|
||||
$temp_summarie = json_decode($summarie, true);
|
||||
$avatarurl = $temp_summarie["response"]["players"][0]["avatarmedium"];
|
||||
|
||||
$avatarurl = $temp_summarie["response"]["players"][$avatarid]["avatarmedium"];
|
||||
|
||||
$output = "<tr>
|
||||
<td>".$number."</td>
|
||||
|
@ -62,6 +73,7 @@ while($row = $result->fetch_assoc()){
|
|||
}
|
||||
echo $output;
|
||||
$number++;
|
||||
$avatarid++;
|
||||
}
|
||||
?>
|
||||
</table><br>
|
||||
|
|
Reference in a new issue