I have a query to a database with a join.
My tables in the database do have some names that are not unique. Ie in the "event" table there is a dsc
coloumn and in module
table there is a dsc
coloumn.
My question is, when i bring the results of a JOIN table query into a php array, how do i select between the two different table fields.
So for one i would say $result['dsc'];
I thought something like $resuilt['event.dsc'];
Doesnt seem too work though :/