I'm kinda new at this, so bear with me.
I have two tables set up (kingdoms, kingdoms2) with identicle columns, but none of the info in them is the same (in other words, bothe tables have kingdom, alliance, age, networth, land, honor, but all the entries are different).
I have this:
$query="SELECT * FROM kingdoms, kingdoms2";
Now, when I have "SELECT * FROM kingdoms" the page comes up correctly. But when I add ", kingdoms2" the page loads 3,000 results, even though there's less than 200 entries in the tables. How can I combine the info from the two tables onto one page?
Also, how would I add ORDER BY? When I add that in after kingdoms2 the page won't display any results.
Thanks 🙂