wes
Новичок
Дата регистрации:
30.03.2015 19:31:01
Сообщений: 1
<?php include 'blocks/bd.php';?><?php if (isset($_GET['id'])) { // Put the value in a separate variable $id = $_GET['id']; // Query the database for the details of the chosen id $result = mysqli_query($con,"SELECT * FROM chay WHERE id = $id" // Check result // This shows the actual query sent to MySQL, and the error. Useful for debugging. if (!$result) { $message = "Invalid query: " . mysqli_error($result) . "\n"; $message .= "Whole query: " . $query; die($message); } // Use result // Attempting to print $result won't allow access to information in the resource // One of the mysql result functions must be used // See also mysql_result(), mysql_fetch_array(), mysql_fetch_row(),etc. while ($row = mysqli_fetch_assoc($result)) { echo $row['id'] . "\n"; echo $row['zag'] . "\n"; echo $row['op'] . "\n"; } } else { die("No valid id specified!" } ?>
Здраствуйте,после выполнения этого кода получаю: No valid id specified!
Хотя из базы все выводится по запросу SELECT * FROM chay.
Как исправить?
Необ ходимо mysqli или pdo.