Answer the question
In order to leave comments, you need to log in
Why am I not receiving information?
Good evening everyone.
There is index.php, which displays full information about the hotel.
<?php foreach ($hotel as $id => $hotel): ?>
// перечисление полей вывода
<a href="details?id=<?=$hotel['id']?>"><?=$hotel['name']?></a>
<?php endforeach; ?>
//Вывожу через запрос:
$query = 'SELECT * FROM hotel';
$stmt = $pdo->prepare($query);
$stmt->execute();
$hotel= $stmt->fetchAll();
$id = $_GET['id'];
$stmt = $pdo->prepare('SELECT * FROM hotel WHERE id = :id');
$details = $stmt->execute(array(':id' => $_GET['id']));
Проверка - 'id'] =$details[
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question