I would probably explicitly list the fields to be retrieved, and use aliases to differentiate them as needed:
SELECT c.foo, c.bar, c.type AS c_type, t.blah, t.yadda, t.type AS t_type FROM . . .
You would then reference it as $row['c_type'] in this example.