PHP multi-post issue.
- by user1887185
When I have two or more comments on a post, it show the post again and the next comment underneath it. How do I make it so it shows only the post once and the comments underneath it if there are multiple comments?
$sql_posts = mysql_query("SELECT * FROM posts ORDER BY post_date DESC ");
$postDisplayList = "";
while($row =…