ok i have this query
SELECT users.id, users.username, content.id, content.author, content.moment FROM content LEFT JOIN users ON content.author=users.username where content.catid='$catid' ORDER BY content.id desc
and if u can see I have to fields on database called the same way "id" one in table users and other in table content.
The problem now is how can I fetch them? coz for example if I use fetchrow id it only returns me the content id...
any ideas?
thxs