You can just keep adding as many joins as you want.
SELECT *
FROM table1
LEFT JOIN table2 ON (table1.item1 = table2.item2)
LEFT JOIN table3 ON (table1.x = table3.x)
WHERE item3= '$id
The * may give you some trouble especially if any columns share the same name. It's usually best to spell out exactly which columns you want.