This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/view/pages/teamtable/edit/index.php
2022-02-09 03:13:46 +01:00

30 lines
811 B
PHP

<h1>Endre lagtabell</h1>
<br>
<table>
<tr>
<th>Navn</th>
<th>Bedrift</th>
<th>Kortnummer</th>
<th>Leder</th>
<th>Telefon</th>
<th>Deltagere</th>
<th>Runder</th>
<th>Bestetid</th>
<th>Handling</th>
</tr>
<?php
foreach ($teams as $row) {
echo '<tr>';
echo "<td>{$row['LagNavn']}</td>";
echo "<td>{$row['Bedrift']}</td>";
echo "<td>{$row['Kortnummer']}</td>";
echo "<td>{$row['Lagleder']}</td>";
echo "<td>{$row['Telefon']}</td>";
echo "<td>{$row['Deltagere']}</td>";
echo "<td>{$row['Runder']}</td>";
echo "<td>{$row['Bestetid']}</td>";
echo "<td><a href='delete.php?item={$row['LagID']}'>Slett</td>";
echo '</tr>';
}
?>
</table>