|
mysqli_result::fetch_rowmysqli_fetch_rowFetch the next row of a result set as an enumerated array DescriptionObject-oriented style
public arraynullfalse mysqli_result::fetch_row()
Procedural style arraynullfalse mysqli_fetch_row(mysqli_result
$result )
Fetches one row of data from the result set and returns it as an enumerated
array, where each column is stored in an array offset starting from 0 (zero).
Each subsequent call to this function will return the next row within the
result set, or
Parameters
Return Values
Returns an enumerated array representing the fetched row, ExamplesExample #1 mysqli_result::fetch_row example Object-oriented style
Procedural style
The above examples will output something similar to: Pueblo (USA) Arvada (USA) Cape Coral (USA) Green Bay (USA) Santa Clara (USA) See Also
|