I have two tables in a mySQL database with same fields (one party enters data in one, another party enters data in the other - they don't want to use each other's tables).
These are tables of articles written by various authors. Currently I am sorting according to author using this code:
$TableName = "news";
$Query = "SELECT *, DATE_FORMAT(date, '%m-%d-%Y') AS date_format FROM $TableName where author_name LIKE '$someone_search' ORDER BY date DESC";
How do i tweak it so that it also pulls the same records (author_name LIKE '$someone_search') from another table named "othernews".
Thanks a lot!!!