table
This commit is contained in:
parent
bdded9b74b
commit
9e948a56ed
1 changed files with 42 additions and 36 deletions
|
|
@ -37,14 +37,20 @@ $lastMatches = array_slice($allMatches, 0, 8);
|
|||
<section>
|
||||
<h2>Latest Matches</h2>
|
||||
|
||||
<table border='1' class='sortable'>
|
||||
<thead>
|
||||
<table class='sortable'>
|
||||
|
||||
<tr>
|
||||
<!-- <th>Match Date</th> -->
|
||||
<tr><th>Player Name</th><th>Kills</th><th>Damage Dealt</th><th>Time Survived</th><th>Rank</th></tr>
|
||||
<tr>
|
||||
<th>Player Name</th>
|
||||
<th>Kills</th>
|
||||
<th>Damage Dealt</th>
|
||||
<th>Time Survived</th>
|
||||
<th>Rank</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
</tr>
|
||||
|
||||
|
||||
<?php
|
||||
// Check if a match ID is provided in the GET request
|
||||
if (isset($_GET['matchid'])) {
|
||||
|
|
@ -77,7 +83,7 @@ $lastMatches = array_slice($allMatches, 0, 8);
|
|||
echo "No match ID provided.";
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue