I want to pull the same field from different tables Example if I have a table called fiction_books and a table called biography_books they will both have a field called "title".
I want to pull all the "title" fields from both tables and list them on one page in an index. I have created a variable for the tables that goes like this:
$table = "biography_books"
And the SELECT statement goes like this:
SELECT * FROM $table where blah blah....
Any help would be great.
foo