PHP mysqli_fetch_row() Function

PHP mysqli_fetch_row() function fetches one row of data from the result set and returns it as an enumerated array.

Syntax

mysqli_fetch_row() Function Parameter

ParameterDescription
result :Required parameter. Mention a result set identifier returned by mysqli_query().

mysqli_fetch_row() Function Return Value

Return Values :Returns an numerical array of strings that corresponds to the fetched row, or FALSE if there are no more rows.

mysqli_fetch_row() Function Example