биндится результат?
$query = "SELECT * FROM `table` WHERE `vendor` = ? AND `car` = ? AND `year` = ? AND `modification` = ?";
$stmt = $db->prepare($query);
$stmt->bind_param('ssis', $_GET['vendor'], $_GET['car'], $_GET['year'], $_GET['modification']); // true
$stmt->execute(); // true
$stmt->bind_result($res); // false
А почему у тебя в bind_param 4 гета через запятую? 🤔
https://secure.php.net/manual/ru/mysqli-stmt.error.php
Обсуждают сегодня