Retrieves an array from a resource.
array db_fetch_array(resource sqlresult [, type])
NOTE: This is a SQL function. See <winterpostwiki>Database support</winterpostwiki> for more information.
Accepted values are FETCH_BOTH (the default), FETCH_NUM and FETCH_ASSOC.
An array with the results of the fetched resource.
// List the field(column) "Tel./Fax" in mytable
$result = db_query("SELECT 'Tel./Fax' FROM mytable");
$tel_fx_nrs = db_fetch_array($result);