Which method retrieves each row from the prepared statement result and assigns the fields to the bound results?
mysqli_fetch_row()
Correct:
mysqli_fetch_row()
Explanation:
Answer: D
The function mysqli_fetch_row()
is used to fetch row from a result-set and returns it as an enumerated array. Its syntax is mysqli_fetch_row(result);