I can presently query the join of two tables on the equality of a foreign/primary key in the below way:
$result = mysql_query("SELECT * FROM `table1`
INNER JOIN
`table2` ON table1.primaryKey=table2.table1Id");
I want to extend this to multiple tables (all with the same foreign keys). I am attempting the following code which isn't returning anything. Can anyone help me with this?