मुझे लगता है कि आपको execute
करना होगा और फिर fetch
. पर कॉल करें mysql_stmt
. पर -ऑब्जेक्ट्स। क्योंकि आपको कई परिणाम (पंक्तियाँ) मिल सकते हैं।
fetch
. के साथ आप अपने परिणाम-कर्सर को आगे बढ़ाएंगे।
दस्तावेज़ीकरण:mysqli mysqli-stmt
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
/* prepare statement */
if ($stmt = $mysqli->prepare("SELECT Code, Name FROM Country ORDER BY Name LIMIT 5")) {
$stmt->execute();
/* bind variables to prepared statement */
$stmt->bind_result($col1, $col2);
/* fetch values */
while ($stmt->fetch()) {
printf("%s %s\n", $col1, $col2);
}
/* close statement */
$stmt->close();
}
/* close connection */
$mysqli->close();
?>