Article List

This commit is contained in:
2024-06-07 13:33:01 +02:00
parent f6626019ae
commit 15d3507b04
10 changed files with 236 additions and 59 deletions
+13
View File
@@ -0,0 +1,13 @@
<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>