データベース要求システムの 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で効果を確認できます。 これを修正して、何が間違っていたのか説明してもらえますか?