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/index.php

32 lines
944 B
PHP
Raw Normal View History

2022-02-05 14:43:48 +00:00
<h1>Lagtabell</h1>
<br>
<table>
<tr>
2022-02-15 12:07:18 +00:00
<th>#</th>
2022-02-05 14:43:48 +00:00
<th>Navn</th>
<th>Bedrift</th>
<th>Kortnummer</th>
<th>Leder</th>
<th>Telefon</th>
<th>Deltagere</th>
<th>Runder</th>
<th>Bestetid</th>
</tr>
<?php
2022-03-07 06:13:17 +00:00
$i = 0;
2022-02-28 04:51:22 +00:00
foreach ($teams as $team) {
$i++;
2022-02-05 14:43:48 +00:00
echo '<tr>';
2022-03-07 06:13:17 +00:00
echo "<td>" . $i . "</td>";
echo "<td>" . htmlspecialchars($team->name) . "</td>";
echo "<td>" . htmlspecialchars($team->company) . "</td>";
echo "<td>" . htmlspecialchars($team->cardnumber) . "</td>";
echo "<td>" . htmlspecialchars($team->leader) . "</td>";
echo "<td>" . htmlspecialchars($team->phone) . "</td>";
echo "<td>" . htmlspecialchars($team->participants) . "</td>";
echo "<td>" . htmlspecialchars($team->rounds) . "</td>";
echo "<td>" . "Ukjent" . "</td>";
2022-02-05 14:43:48 +00:00
echo '</tr>';
}
?>
</table>