PHP » GoLang |
login |
register |
about
|
GoLang mysqli_result::fetch_row
request it (416)
GoLang replacement for PHP's mysqli_result::fetch_row
[edit | history]
mysqli_result::fetch_rowmysqli_fetch_row(PHP 5, PHP 7) mysqli_result::fetch_row -- mysqli_fetch_row — Get a result row as an enumerated array DescriptionObject oriented style Procedural style
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
mysqli_fetch_row() returns an array of strings that corresponds to the fetched row
or
ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above examples will output: Pueblo (USA) Arvada (USA) Cape Coral (USA) Green Bay (USA) Santa Clara (USA) See Also
|
more
Recently updated
more
Most requested
more
Last requests
|