Hello all, I have two tables that I want to get infomation from.
I have a table called info_db with the fields i_id, title, info and in_area
I have a table called area_db with the fields area_id, area_name
I echo out the data into a tabular table.
but what im trying to do is instead of echoing out the in_area field in the info_db table ( for example 31) is go to the area_db table and get the name of the area (which is the the area_name field) with the id 31 or whatever the id is in the in_area field of the info_db table.
I have read about using inner joins but im not sure how they would work with this.
Thanks.