show total score on statistic site

This commit is contained in:
2022-06-08 12:52:39 +02:00
parent 42cd6956b9
commit 0962a70cd7
3 changed files with 41 additions and 1 deletions

View File

@@ -7,6 +7,24 @@
echo file_get_contents("html/header.html");
?>
<body>
<div class="table-div">
<table>
<thead>
<th scope="col">Mannschaft</th>
<th scope="col">Feuerwehr</th>
<th scope="col">Gesamtpunkte</th>
</thead>
<tbody>
<?php
load_total_score($con);
?>
</tbody>
</table>
</div>
</body>
<?php
echo file_get_contents("html/footer.html");
$con=null;