ctsql_fetch_row
Returns a result row as an enumerated array.
Declaration
array ctsql_fetch_row ( resource queryID)
Description
ctsql_fetch_row() will fetch one row of data from the result associated with the specified query identifier. The row is returned as an array. Each result column is stored in an array offset, starting at offset 0.
Subsequent calls to ctsql_fetch_row() return the next row in the result set, or FALSE if there are no more rows.
Returns
Returns an array that corresponds to the fetched row, or FALSE if there are no more rows.
See also
ctsql_fetch_array(), ctsql_fetch_assoc(), ctsql_fetch_object().