Which is faster for retrieving results from a large mySQL query result: (a) a for loop with a call to mysql_result or (b) a for loop with a call to mysql_fetch_array? Obviously, mysql_result requires a call for each field you intend to output, but mysql_fetch_array must do a lot of copying ...
thanks