@@ -304,6 +212,8 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
echo $verwendete_allergene_string;
?>
+
diff --git a/M4/Werbeseite/style.css b/M4/Werbeseite/style.css
new file mode 100644
index 0000000..31af0de
--- /dev/null
+++ b/M4/Werbeseite/style.css
@@ -0,0 +1,90 @@
+* {
+ font-family: Arial;
+}
+
+.grid {
+ display: grid;
+ grid-template-columns: 200px auto 200px;
+}
+
+img {
+ width: 100%;
+ height: auto;
+}
+
+.speisen {
+ border: solid;
+ border-collapse: collapse;
+}
+
+.speisen td {
+ border: solid;
+ border-collapse: collapse;
+ border-radius: 4px;
+ padding: 5px;
+ width: auto;
+}
+
+.speisen td:not(:first-of-type) {
+ text-align: center;
+}
+
+p {
+ text-align: justify;
+}
+
+.zahlen {
+ list-style-type: none;
+ display: grid;
+ grid-template-columns: auto auto auto;
+ gap: 10px;
+}
+
+.zahlen p {
+ text-align: center;
+ font-weight: bold;
+}
+
+.formular {
+ display: grid;
+ grid-template-columns: auto auto auto;
+ justify-content: start;
+ gap: 10px;
+}
+
+.wichtig {
+ text-align: center;
+}
+
+.wichtigListe {
+ display: inline-block;
+ text-align: left;
+}
+
+.freude {
+ text-align: center;
+}
+
+footer {
+ border-top: 1px solid;
+}
+
+.fusszeile {
+ padding-top: 20px;
+ padding-bottom: 20px;
+ margin-left: auto;
+ margin-right: auto;
+ border: none;
+}
+
+.fusszeile td:first-child {
+ border-left: none;
+ padding-left: 20px;
+ padding-right: 20px;
+}
+
+.fusszeile td {
+ border-left: 3px solid;
+ padding-left: 20px;
+ padding-right: 20px;
+}
diff --git a/M4/Werbeseite/wunschgericht.php b/M4/Werbeseite/wunschgericht.php
new file mode 100644
index 0000000..ca3e097
--- /dev/null
+++ b/M4/Werbeseite/wunschgericht.php
@@ -0,0 +1,80 @@
+
+
+
+
+
+
Ihre E-Mensa
+
+
+
+
+
+

+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/M4/beispiel/m3_4a_testdatenbank.php b/M4/beispiel/m3_4a_testdatenbank.php
deleted file mode 100644
index 08770c8..0000000
--- a/M4/beispiel/m3_4a_testdatenbank.php
+++ /dev/null
@@ -1,28 +0,0 @@
-";
-while ($row = mysqli_fetch_assoc($result)) {
- $tabelle .= "
| ". $row['erfasst_am']. " |
";
-}
-$tabelle .= "";
-echo $tabelle;
-mysqli_free_result($result);
-mysqli_close($link);
\ No newline at end of file