Hi, I have a database that has two tables, One is: results The other: news I have a page called news.php and results.php where the latest news is called by the most recent date and the other does the same but with the latest results. On the index i would like to call both tables and sort the rows by date, can this be done? Thanks
Is there a field linking the two tables? If not use two queries to get each. If there is a link then do something like "WHERE news.field_name=results.field_name2 ORDER BY date_field"