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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!