Eintrag |
Avatar |
Steam-Profil |
Ersteller |
Erstelldatum |
VAC-Ban |
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;
$avatarurl = $temp_summarie["response"]["players"][$avatarid]["avatarmedium"];
$output = "
".$number." |
|
".$row['url']." |
".$row['author']." |
".$row['addtime']." | ";
if($row['banned'] == 0){
$output .= "
|
";
}else{
$output .= "
";
}
echo $output;
$number++;
$avatarid++;
}
?>
|