前提・実現したいこと
while文でデータをベース内のデータを出力するプログラムを書いてます。
ブラウザで表示した際に一個目の商品の購入ボタンが出てこないのですがどうすればいいですか?### 該当のソースコード
<div class="wrapper">
<?php while($record=$stmt->fetch()): ?> <img src="images/<?php print($record["picture"]); ?>" width="200px" height="200px"> <img src="images/<?php print($record["picture2"]); ?>" width="200px" height="200px"> <img src="images/<?php print($record["picture3"]); ?>" width="200px" height="200px"> <h3 id="hinmei"><?php print($record['hinmei']); ?></h3> <p id="price"><?php print($record['price']); ?>円(税込み)</p> <a href="item02.php?id=<?php print($record["id"]); ?>"> <input type="submit"></a> <?php endwhile; ?> </div> <!-- wrapper -->
ソースコード
試したこと
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー