aタグの中にDBから取り出したIDを入れました。そのIDを付与してmoredog.phpに送りたいです。よろしくお願いします。
PHP
1<?php 2 ~ 3 $stmt = dbc()->prepare($sql); 4 $stmt->execute(); 5 $posts = $stmt->fetchAll(); 6?> 7 8<html> 9 10 <form action="./moredog.php" method="post"> 11 12 <?php foreach ($posts as $post) : ?> 13 14 <a href="./moredog.php?id=$post['id']"> 15 16 ID:<?php echo $post['id'] ?> 17 18 </a> 19 20 <?php endforeach ?> 21 22 </form> 23 24</html>
PHP
1<?php 2require_once('database.php'); 3$dogId = $_POST['id']; 4?> 5 6<html> 7 <h1>このサイトはID<?php echo $dogId ?>のサイトです</h1> 8</html>
回答1件
あなたの回答
tips
プレビュー