Okay, here's the question in a nutshell:
I have a particular select I need to make for one of my scripts and I need to upgrade it a bit so as to select from more than just the main table; to select from 7 tables. Here's the code snippet as it is now:
mysql_query(
"select distinct r.fullname, m.sender from $message_table m, $rooms_table r
where m.timestamp > $time
and m.room = r.shortname
order by r.fullname, m.sender");
Any ideas as to how I can select from more than just one $message_table ? I want to be able to select from $message_table, $message_two , $message_three and so on.
Thanks in advance!