31 lines
682 B
PHP
31 lines
682 B
PHP
<?php
|
|
session_start();
|
|
|
|
include("../scripts/connection.php");
|
|
include("../scripts/functions.php");
|
|
$user_data = check_login($con);
|
|
|
|
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;
|
|
?>
|