entries in the team table can be edit now

This commit is contained in:
2022-06-17 18:30:40 +02:00
parent 4ca75ef48d
commit 0981887613
5 changed files with 105 additions and 5 deletions

View File

@@ -47,7 +47,7 @@ function load_stations_table($con) {
function load_teams_table($con) {
$stmt = get_teams($con);
foreach($stmt->fetchAll() as $row) {
echo "<tr>";
echo "<tr id=\"" . $row['m_id'] . "\" >";
echo "<td>" . $row['name'] . "</td>";
echo "<td>" . $row['feuerwehr'] . "</td>";
echo "</tr>";