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.
29 lines
555 B
29 lines
555 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->getProgressions() as $puuid => $progress){
|
|
$entries = $tracker->entries[$puuid];
|
|
$account = $tracker->accounts[$puuid];
|
|
|
|
echo "<h3>$account->gameName#$account->tagLine: $progress</h3>";
|
|
foreach ($entries as $date => $elo){
|
|
$eloValue = $elo->value();
|
|
echo "$date → $eloValue<br>";
|
|
}
|
|
}
|
|
|
|
?>
|
|
</body>
|
|
</html>
|
|
|
|
|