Sedno problemu polega na tym:
$comments = $commentClass->fetch_article_comments($article_id);
Zakładam, że ta funkcja gdzieś tworzy i uruchamia SQL, co jest podobne do SELECT ... WHERE comments.article_id=$article_id
. To nie wystarczy - potrzebujesz czegoś takiego jak
$comments = $commentClass->fetch_article_comments($article_id, $parent_id);
co przekłada się na SQL podobnie jak SELECT ... WHERE comments.article_id=$article_id AND comments.comment_parent ($parent_id>0)?"=$parent_id":"IS NULL"
Teraz możesz napisać swoją funkcję PHP:
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);
}
}
I na koniec wywołaj to za pomocą display_comments ($article_id);