Sorgu kodunu soruyorsan:

SELECT `post`. * , `user`.`name` AS `poster` , `cat`.`name` AS `catname` , `comment`.`content` AS `comments`
FROM `post` , `user` , `cat`
LEFT JOIN `comment` ON `comment`.`post_id` = '$_GET[id]'
WHERE (`post`.`id` = '$_GET[id]') AND (`comment`.`post_id` = '$_GET[id]')
PHP kodunu soruyorsan da o biraz uzun olduğu için teyid etmeni bekliyorum.