Is there an easy way to query multiple tables using PHP?
an example of what i'm trying to do:
Table 1 contains: Product_id & Product_name - among many others
Table 2 contains: Product_id & Product_price - among many others
Notice the Product_id is the same so I can reference them together.
If I then want to output a table like this:
Product_id | Product_ name | Product_price
What query would I use?

