37 lines
1.2 KiB
PHTML
37 lines
1.2 KiB
PHTML
<?php
|
|
include dirname(__DIR__).'/header.phtml';
|
|
?>
|
|
<h2>Unsere Standorte</h2>
|
|
<?php if (!empty($standorte)): ?>
|
|
<table border="1" cellpadding="8" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th>Straße</th>
|
|
<th>Hausnr.</th>
|
|
<th>PLZ</th>
|
|
<th>Ort</th>
|
|
<th>Land</th>
|
|
<th>Telefon</th>
|
|
<th>Email</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($standorte as $standort): ?>
|
|
<tr>
|
|
<td><?php echo htmlspecialchars($standort['strasse']); ?></td>
|
|
<td><?php echo htmlspecialchars($standort['hausnr']); ?></td>
|
|
<td><?php echo htmlspecialchars($standort['plz']); ?></td>
|
|
<td><?php echo htmlspecialchars($standort['ort']); ?></td>
|
|
<td><?php echo htmlspecialchars($standort['land']); ?></td>
|
|
<td><?php echo htmlspecialchars($standort['tel']); ?></td>
|
|
<td><?php echo htmlspecialchars($standort['email']); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
<?php else: ?>
|
|
<p>Keine Standorte gefunden.</p>
|
|
<?php endif; ?>
|
|
<?php
|
|
include dirname(__DIR__).'/footer.phtml';
|
|
?> |