sqlite_fetch_array Fetches the next row from a result set as an array. Description arraysqlite_fetch_array resourceresult intresult_type booldecode_binary Fetches the next row from the given result handle. If there are no more rows, returns &false;, otherwise returns an associative array representing the row data. result_type can be used to specify how you want the results to be returned. The default value is SQLITE_BOTH which returns columns indexed by their ordinal column number and by column name. SQLITE_ASSOC causes the array to be indexed only by column names, and SQLITE_NUM to be indexed only by ordinal column numbers. The column names returned by SQLITE_ASSOC and SQLITE_BOTH will be case-folded according to the value of the sqlite.assoc_case configuration option. When decode_binary is set to &true; (the default), PHP will decode the binary encoding it applied to the data if it was encoded using the sqlite_escape_string. You will usually always leave this value at its default, unless you are interoperating with databases created by other sqlite capable applications. See also sqlite_array_query and sqlite_fetch_string.