32 lines
		
	
	
		
			944 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			944 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 = 0; 
 | |
|     foreach ($teams as $team) {
 | |
|         $i++;
 | |
|         echo '<tr>';
 | |
|         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>";
 | |
|         echo '</tr>';
 | |
|     }
 | |
|     ?>
 | |
| </table>
 |