The fetchNumeric() function returns the record as an array with numeric keys: 0 => value, 1=>value.
Syntax
fetchNumeric()
Arguments
No arguments.
Return value
Returns the record as an array with numeric keys: 0 => value, 1=>value.
Null, if there are no more records.
Example
$rs = DB::Query("select * from carsmake");
while( $data = $rs->fetchNumeric() )
{
echo $data[0];
echo $data[1];
}
See also:
•QueryResult object: fetchAssoc()