Kernen i problemet er dette:
$comments = $commentClass->fetch_article_comments($article_id);
Jeg antager, at denne funktion et eller andet sted opretter og kører SQL, der ligner SELECT ... WHERE comments.article_id=$article_id
. Dette er ikke tilstrækkeligt - du har brug for noget som
$comments = $commentClass->fetch_article_comments($article_id, $parent_id);
der oversættes til SQL svarende til SELECT ... WHERE comments.article_id=$article_id AND comments.comment_parent ($parent_id>0)?"=$parent_id":"IS NULL"
Nu kan du skrive din PHP-funktion:
function display_comments ($article_id, $parent_id=0, $level=0) {
$comments = $commentClass->fetch_article_comments($article_id, $parent_id);
foreach($comments as $comment) {
$comment_id = $comment['comment_id'];
$member_id = $comment['member_id'];
$comment_text = $comment['comment_text'];
$comment_timestamp = timeAgo($comment['comment_timestamp']); //get time ago
//render comment using above variables
//Use $level to render the intendation level
//Recurse
display_comments ($article_id, $comment_id, $level+1);
}
}
Og kald det endelig med display_comments ($article_id);