If you go to http://www.foxnews.com, and scroll down a little you would see the box "LATEST NEWS".
Now I want to do something like that, but with modification.
I have 3 queries, that get out information from 3 tables. But this doesn't give me the "latest news", because it's 3 separate queries.
Now I want to make a box, (I can do this in css), that displays the latest column of those 3 tables, sorted by dato DESC.
These are the tables:
Tablename: Member_meetups
Column to show: meetup
Table: member_film
Column to show: navn
Table: member_tutorials
Column to show: title
Sort by dato.. All these tables have the column "dato" too, so I want to sort out from dato DESC..
And in that way that would be latest actions from those 3 tables..
FOR EXAMPLE it would show like this: Latest Actions: I love Meetups - 23:11:02 - 01/01/01 (a column in member_meetups) I love tutorials - 23:10:00 - 01/01/01 (a column in member_tutorials) I love tutorials first - 22:59:00 01/01/01 (a column in member_tutorials) I hate movies! - 22:42:00 01/01/01 (a column in member_film)
and so on.. as you see sorting by DATO, shows the last column's title+dato in the 3 tables.
Questions please comment, and please answer with not so hard English, as you may hear, I'm not English myself. Thank you
My question is: How to do this?