adspace
Answer Posted / Dileep Kumar Pandey
mysqli_fetch_array() is a function in PHP that fetches a result row as an associative array, a numeric array, or both. This is used to retrieve data from a MySQL database after executing a query.nnExample:n```phpn$result = mysqli_query($conn, $sql);n$row = mysqli_fetch_array($result, MYSQLI_ASSOC);n```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers