2024-06-07 13:33:01 +02:00

13 lines
263 B
PHP

<tbody>
<?php
foreach ($result as $item) {
?>
<tr>
<th scope="row"><?= $item["ArtikelNr"] ?></th>
<td><?= $item["Artikelname"] ?></td>
<td><?= number_format($item["Einzelpreis"], 2, ",", ".") ?></td>
</tr>
<?php
}
?>
</tbody>