基本上通过单击“评论”链接,查询的最后结果应该显示出来,再次单击它应该被隐藏。我也尝试过 Rocket 的代码,但我在浏览器底部收到一条错误消息,当我单击“评论”时,它只会将我带到页面顶部。我会对此提出一些建议
$i = 1; // ID Counter
while($row = mysql_fetch_array($result))
{
echo "<h1>$row[title]</h1>";
echo "<p class ='second'>$row[blog_content]</p> ";
echo "<p class='meta'>Posted by .... • $row[date] • <a href='#' onclick=\"toggle_visibility('something$i');\">Comments</a><div id='something$i' style='display: none;'>$row[comment]</div>";
$i++; // Increment counter
}