prepare("SELECT * FROM restaurants WHERE id = ?"); $stmt->execute([$restaurant_id]); $restaurant = $stmt->fetch(PDO::FETCH_ASSOC); } if ($restaurant) { $stmt = db()->prepare("SELECT * FROM menu_items WHERE restaurant_id = ?"); $stmt->execute([$restaurant_id]); $menu_items = $stmt->fetchAll(PDO::FETCH_ASSOC); } include 'header.php'; ?>

( ratings)

Rate your experience

Restaurant not found.