Question:What is the difference between fetch_row () and fetch_array()?
Answer fetch_row(): This function retrieves an entire row of data from result set, placing the values in an indexed array. fetch_array(): This function is really just an enhanced version of fetch_row(), offering the opportunity to retrieve each row of the result set as an associative array, a numerically indexed array, or both.
+ Report
What is the difference between fetch_row () and fetch_array()?