2つのレベルのみが必要な場合は、1つのクエリで次のようになります。
あなたのテーブル -id, parent_id, comment
列
コード
$rows = mysql_query('
select *
FROM
comments
ORDER BY
id DESC');
$threads = array();
foreach($rows as $row) {
if($row['parent_id'] === '0') {
$threads[$row['id']] = array(
'comment' => $row['comment'],
'replies' => array()
);
} else {
$threads[$row['parent_id']]['replies'][] = $row['comment'];
}
}
$threads
内 すべてのメインスレッドと$threads[$id]['replies']
があります すべての返信を保持します。スレッドはソートされています-latest=最初に、ページングを追加すれば準備完了です。