Anfang von 6 2.

This commit is contained in:
Robert
2023-11-06 16:54:20 +01:00
parent b8c27e90ea
commit f1831cc58d
4 changed files with 236 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* Praktikum DBWT. Autoren:
* Şafak, Hazinedar, 3108590
* Robert, Joel, 3672729
*/
$gerichte = [
1 => ['name' => 'Rindfleich mit Bambus, Kaiserschoten und roter Paprika, dazu Mie Nudeln',
'priceint' => 3.50,
"priceex" => 6.20
],
2 => ['name' => 'Spinatrisotto mit kleinen Samosateigecken und gemischter Salat',
'priceint' => 2.90,
"priceex" => 5.30
],
3 => ['name' => 'Spaghetti Bolognese',
'priceint' => 3,
"priceex" => 5
],
4 => ['name' => 'Spaghetti Carbonara',
'priceint' => 3,
"priceex" => 5
]
]
?>