mysql_fetch_array returns a row as an array with both numeric indices (0, 1, 2...) and associative keys (column names). mysql_fetch_row returns only a numeric array, while mysql_fetch_object returns an object. The function name 'array' specifically indicates it can return both types.