This commit is contained in:
Lanta 2025-02-18 16:14:42 +01:00
parent 2c9b1bae2e
commit fa190ee51f
3 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@ if ($host == 'dev.dtch.online') {
<a href="index.php" class="active">Home</a> <a href="index.php" class="active">Home</a>
<div id="myLinks"> <div id="myLinks">
<a href="last_stats.php">Last month %</a> <a href="last_stats.php">Last quarter %</a>
<a href="latestmatches.php">Last Matches</a> <a href="latestmatches.php">Last Matches</a>
<a href="topstats.php">Top10</a> <a href="topstats.php">Top10</a>
<a href="user_stats.php">User Stats</a> <a href="user_stats.php">User Stats</a>

View file

@ -54,8 +54,8 @@ $ogDescription = "Explore detailed player statistics over the past month includi
echo "<table border='1' class='sortable'>"; echo "<table border='1' class='sortable'>";
echo "<tr> echo "<tr>
<th>Player</th> <th>Player</th>
<th>AHD</th>
<th>Win %</th> <th>Win %</th>
<th>AHD</th>
<th>K/D Human</th> <th>K/D Human</th>
<th>Human Kills</th> <th>Human Kills</th>
<th>K/D All</th> <th>K/D All</th>

View file

@ -1,6 +1,6 @@
<?php <?php
$ogDescription = "Check out the top 10 PUBG player rankings in key performance categories! Explore leaderboards for metrics like damage dealt, headshot kills, and more across different game modes. Stay on top of the competitive scene and see where you or your favorite players stand in our regularly updated stats."; $ogDescription = "Check out the top 20 PUBG player rankings in key performance categories! Explore leaderboards for metrics like damage dealt, headshot kills, and more across different game modes. Stay on top of the competitive scene and see where you or your favorite players stand in our regularly updated stats.";
?> ?>
@ -31,10 +31,10 @@ include './includes/header.php';
<input type='submit' name='game_mode' value='squad' class='btn'> <input type='submit' name='game_mode' value='squad' class='btn'>
</form><br>"; </form><br>";
// Displaying top 10 comparisons for each attribute // Displaying top 20 comparisons for each attribute
$attributes = ['wins','top10s','kills','dBNOs','damageDealt','headshotKills','roadKills','teamKills','roundMostKills']; $attributes = ['wins','top10s','kills','dBNOs','damageDealt','headshotKills','roadKills','teamKills','roundMostKills'];
foreach ($attributes as $attribute) { foreach ($attributes as $attribute) {
echo "<h3>Top 10 $attribute</h3>"; echo "<h3>Top 20 $attribute</h3>";
uasort($players_data[$selected_mode], function ($a, $b) use ($attribute) { uasort($players_data[$selected_mode], function ($a, $b) use ($attribute) {
$account_id_a = array_key_first($a); $account_id_a = array_key_first($a);
$account_id_b = array_key_first($b); $account_id_b = array_key_first($b);
@ -45,7 +45,7 @@ include './includes/header.php';
echo "<tr><th>Player</th><th>$attribute</th></tr>"; echo "<tr><th>Player</th><th>$attribute</th></tr>";
$count = 0; $count = 0;
foreach ($players_data[$selected_mode] as $player_name => $player_details) { foreach ($players_data[$selected_mode] as $player_name => $player_details) {
if ($count++ >= 10) break; // Limit to top 10 players if ($count++ >= 20) break; // Limit to top 20 players
$account_id = array_key_first($player_details); $account_id = array_key_first($player_details);
echo "<tr><td>$player_name</td><td>{$player_details[$account_id][$attribute]}</td></tr>"; echo "<tr><td>$player_name</td><td>{$player_details[$account_id][$attribute]}</td></tr>";
} }