Question: Convert this php code into bind and fetch commands rather than get_results()
Convert this php code into bind and fetch commands rather than get_results()
$sql = "SELECT * FROM gallery ORDER BY orderGallery DESC;"; $stmt = mysqli_stmt_init($conn); if (!mysqli_stmt_prepare($stmt, $sql)) { echo "SQL statement failed!"; } else { mysqli_stmt_execute($stmt); $result = mysqli_stmt_get_result($stmt, $conn);
while ($row = mysqli_fetch_assoc($result)) { echo '
'.$row["titleGallery"].'
'.$row["descGallery"].'
'; } } ?>Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
