1
ボタンの値を$_POST["class_name"]
に渡そうとしていますので、selectclass.php
で使用できます。私は、テーブルのボタンをクリックして$ _POST =ボタンの値を、または可能であればボタンの隣にあるclass_idを持つことができるようにします。どんな助けでも本当に感謝しています。PHP、html:投稿するボタンの値を渡す方法
<tbody>
<form action="selectclass.php" method="post">
<?php foreach ($classes as $class): ?>
<tr>
<th><button type="text" name = "class_id"><?=$class["class_name"]?></button></th>
<th><?=$class["class_id"] ?></th>
</tr>
<?php endforeach ?>
</form>
</tbody>
を参照してください。これです。 – Marcel