Skip to content
Advertisement

How to query COMMENTS table for each row, then query REPLIES TABLE and append each result inside COMMENTS before JSON echo?

The data is supposed to be dynamic and loaded with an AJAX request. I have comments, which are being queried just below. That works no problem. The issue im running into here is trying to query the replies table that correspond with each comment. My thinking was to try and put a query inside of the div so that for each COMMENT query, it would query REPLIES for all of its results, then append them automatically for the JSON echo. But I got an error. I am perplexed at this point as to combine them in a way to get a proper hierarchy of comments/replies. Is there a way to get a query inside of the div? Or am I going about this completely incorrect? Any help would be much appreciated, been stuck on this for hours. For simplicity I removed much of the data that is in the divs.

COMMENTS QUERY

JavaScript

REPLIES QUERY + divs that need to be appended

JavaScript

Advertisement

Answer

Here you go:
You have to put the replies query inside the comments query so that for every comment query, it queries for each reply. You must $stmt->store_result(); the comment query so it can be used in the final results of the output.
Next you must use the $comments .= '' with the comments HTML inside the '' to append the comment-block result to the original $comments = '';. REMOVE the last closing </div> from the comment block, we will use that later. After the while ($stmt2->fetch()) loop you must again use the $comments .= '' with the reply-block HTML inside so that each loop is appended to the comment-block. Lastly, outside of the replies loop, you must use the $comments .= '</div>' which closes the block and seals the comment block with its replies within it.

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement