show total score on statistic site
This commit is contained in:
@@ -52,4 +52,15 @@ function load_teams_table($con) {
|
||||
echo "<td>" . $row['feuerwehr'] . "</td>";
|
||||
echo "</tr>";
|
||||
}
|
||||
}
|
||||
|
||||
function load_total_score($con) {
|
||||
$stmt = get_total_score($con);
|
||||
foreach($stmt->fetchAll() as $row) {
|
||||
echo "<tr>";
|
||||
echo "<td>" . $row['Mannschaftsname'] . "</td>";
|
||||
echo "<td>" . $row['Feuerwehr'] . "</td>";
|
||||
echo "<td>" . $row['Gesamtpunkte'] . "</td>";
|
||||
echo "</tr>";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user