MY PRODUCTS TABLE:
PID
prod_name
prod_price
etc
MY REVIEWS TABLE:
ID
Author
Review
etc
PID
In my SQL statement I did an INNER JOIN as someone suggested:
SELECT *
FROM products p INNER JOIN reviews r ON p.PID = r.PID
ORDER BY p.title
However, the one review in the REVIEWS table shows up on every product page instead of just the one specified in the PID in the REVIEWS table????