prepare("SELECT * FROM salon_places WHERE id=?"); $stmt->execute([$id]); $place = $stmt->fetch(); if (!$place) { echo "Nie znaleziono miejsca."; exit; } // Pobieramy sklep (shops) $stmt = $pdo->prepare("SELECT * FROM shops WHERE place_id=?"); $stmt->execute([$id]); $shops = $stmt->fetchAll(); ?>

Edytuj miejsce / salon


Dane sklepu

Wstecz