[Solved] php mysql how to select what i need from 2 tables [closed]


Try something like this as your select statement

SELECT message, country FROM Countrys AS c 
INNER JOIN Messages as m on c.country_id = m.country_id;

1

solved php mysql how to select what i need from 2 tables [closed]