Discussion :: PHP - CS
- Which of the methods are used to manage result sets using both associative and indexed arrays?
A.
get_array() and get_row() |
B.
get_array() and get_column() |
C.
fetch_array() and fetch_row() |
D.
fetch_array() and fetch_column() |
Answer : Option C
Explanation :
Their prototype is as follows- calss mysqli_result { mixed fetch_array ([int resulttype]) } calss mysqli_result { mixed fetch_row() }
Be The First To Comment