shows table of avaiable Stations

This commit is contained in:
2022-06-08 12:05:55 +02:00
parent f3cb6ad436
commit c701d808e5
3 changed files with 40 additions and 0 deletions

View File

@@ -7,4 +7,23 @@
echo file_get_contents("html/header.html");
?>
<body>
<div class="table-div">
<table>
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Standort</th>
</tr>
</thead>
<tbody>
<?php
load_stations_table($con);
?>
</tbody>
</table>
</div>
</body>
<?php echo file_get_contents("html/footer.html"); ?>