This Week's Menu
Here are the meal options for the upcoming week. Orders can be placed until 10:00 AM for the next day.
'Normal', 'V' => 'Vegetarian', 'G' => 'Vegan']; return $types[$char] ?? 'Unknown'; } $menu = []; $error = ''; try { $pdo = db(); $stmt = $pdo->query("SELECT * FROM meals ORDER BY FIELD(day_of_week, 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'), meal_type"); $meals = $stmt->fetchAll(PDO::FETCH_ASSOC); foreach ($meals as $meal) { $menu[$meal['day_of_week']][] = [ 'name' => $meal['name'], 'option' => getMealTypeName($meal['meal_type']), 'description' => $meal['description'], 'allergens' => [] // Placeholder for allergens ]; } } catch (PDOException $e) { $error = 'Database error: ' . $e->getMessage(); } ?>
Here are the meal options for the upcoming week. Orders can be placed until 10:00 AM for the next day.