24 lines
453 B
PHP
24 lines
453 B
PHP
|
<h1>Lagtabell</h1>
|
||
|
<br>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>ID</th>
|
||
|
<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
|
||
|
foreach ($teams as $row) {
|
||
|
echo '<tr>';
|
||
|
foreach ($row as $key) {
|
||
|
echo "<td>$key</td>";
|
||
|
}
|
||
|
echo '</tr>';
|
||
|
}
|
||
|
?>
|
||
|
</table>
|