PHPの左結合に問題があります
phpは私にエラーを書いてください
SQL構文にエラーがあります。'FROM ipb_topics t LEFT JOIN ipb_posts p ON p.topic_id = t.tid LEFT JOIN ipb_at'の12行目付近で使用する正しい構文については、MySQLサーバーのバージョンに対応するマニュアルを確認してください。
コードは
$query = mysql_query("
SELECT
t.tid as tid,
t.title as title,
t.start_date as start_date,
t.title_seo as title_seo,
p.post as post,
a.attach_location as attach_location,
FROM ".$forum_prefix."topics t
LEFT JOIN ".$forum_prefix."posts p ON p.topic_id = t.tid
LEFT JOIN ".$forum_prefix."attachments a ON a.attach_rel_id = t.tid
GROUP BY t.tid
") or die(mysql_error());