30 lines
634 B
PHP
30 lines
634 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>
|
|
<tr>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">Feuerwehr</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php load_teams_table($con); ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
|
|
<?php
|
|
echo file_get_contents("html/footer.html");
|
|
$con = null;
|
|
?>
|