38 lines
953 B
PHP
38 lines
953 B
PHP
<h1>Lagtabell</h1>
|
|
<br>
|
|
<table>
|
|
<tr>
|
|
<th>#</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
|
|
$i = 1;
|
|
foreach ($teams as $team) {
|
|
$i++;
|
|
// Remember to escape your values!
|
|
foreach ($team as $key => $value)
|
|
{
|
|
$team[$key] = htmlspecialchars($team[$key]);
|
|
}
|
|
|
|
echo '<tr>';
|
|
echo "<td>{$i}</td>";
|
|
echo "<td>{$team['LagNavn']}</td>";
|
|
echo "<td>{$team['Bedrift']}</td>";
|
|
echo "<td>{$team['Kortnummer']}</td>";
|
|
echo "<td>{$team['Lagleder']}</td>";
|
|
echo "<td>{$team['Telefon']}</td>";
|
|
echo "<td>{$team['Deltagere']}</td>";
|
|
echo "<td>{$team['Runder']}</td>";
|
|
echo "<td>{$team['Bestetid']}</td>";
|
|
echo '</tr>';
|
|
}
|
|
?>
|
|
</table>
|