Chris
1dc90e8e36
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<pre><?=$query;?></pre>
|
|
|
|
<table class="table">
|
|
<tr>
|
|
|
|
<th>event</th>
|
|
<th>run</th>
|
|
<th>rang</th>
|
|
<th>stnr</th>
|
|
<th>teilnehmer</th>
|
|
<th>hund</th>
|
|
<th>verein</th>
|
|
<th>f</th>
|
|
<th>vw</th>
|
|
<th>zf</th>
|
|
<th>zeit</th>
|
|
<th>gf</th>
|
|
<th>msek</th>
|
|
<th>bew</th>
|
|
<th>punkte</th>
|
|
</tr>
|
|
<?php foreach($results as $res): ?>
|
|
<tr>
|
|
<td><?= $res['event'] ?></td>
|
|
<td><?= $res['run'] ?></td>
|
|
<td><?= $res['rang'] ?></td>
|
|
<td><?= $res['stnr'] ?></td>
|
|
<td><?= $res['teilnehmer'] ?></td>
|
|
<td><?= $res['hund'] ?></td>
|
|
<td><?= $res['verein'] ?></td>
|
|
<td><?= $res['f'] ?></td>
|
|
<td><?= $res['vw'] ?></td>
|
|
<td><?= $res['zf'] ?></td>
|
|
<td><?= $res['zeit'] ?></td>
|
|
<td><?= $res['gf'] ?></td>
|
|
<td><?= $res['msek'] ?></td>
|
|
<td><?= $res['bew'] ?></td>
|
|
<td><?= $res['punkte'] ?></td>
|
|
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|