我刚刚创建了我的数据库请求系统的 v.2。但是,由于某种原因,我有这种“楼梯效果”,它会打印出数据,然后一遍又一遍地打印它,从而增加字体的大小。这是什么?!我的代码:
$query=$db->prepare("SELECT post_id, title, body, category FROM posts INNER JOIN categories ON categories.category_id");
$query->execute();
$query->bind_result($post_id, $title, $body, $category);
while($query->fetch()):?>
<article>
<h2><?php echo $title?><h2>
<p><?php echo $body?></p>
<p2>Category:</p2><?php echo $category?>
<?php endwhile ?>
</article>
你可以看到效果@http ://wrya.x10host.com/highflyer/index.php 谁能帮我解决这个问题并向我解释我做错了什么?