You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
525 B

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<link href="styles.css" rel="stylesheet">
<title>UEM Elo Tracker</title>
</head>
<body>
<?php
require_once "Tracker.php";
$tracker = new Tracker();
foreach ($tracker->accounts as $puuid => $account){
$entries = $tracker->entries[$puuid];
if (sizeof($entries) > 0){
echo "<h3>$account->gameName#$account->tagLine</h3>";
foreach ($entries as $date => $elo){
$eloValue = $elo->value();
echo "$date = $eloValue<br>";
}
}
}
?>
</body>
</html>