adspace


What is the use of mysqli_fetch_array?

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


Please Help Members By Posting Answers For Below Questions

What is the current mysql version?

1105


Which statement is used in a select query for partial matching?

1247


How to Change a users password from unix shell.

1223


What is current version of mysql?

1085