問題:
注文に基づいて送信されたラジオ ボタンを特定し、PHP で値を送信します。
HTML テーブル 1 コード:
<table class="table table-bordered neutralize" id="itembuttons">
<thead>
<tr>
<th><input type="radio" name="3" id="3" value="6"></th>
<th><input type="radio" name="3" id="3" value="7"></th>
<th><input type="radio" name="3" id="3" value="8"></th>
<th><input type="radio" name="3" id="3" value="9"></th>
<th><input type="radio" name="3" id="3" value="10"></th>
</tr>
</thead>
</table>
HTML テーブル 2 コード:
<table class="table table-bordered neutralize" id="itembuttons">
<thead>
<tr>
<th><input type="radio" name="3" id="3" value="11"></th>
<th><input type="radio" name="3" id="3" value="12"></th>
<th><input type="radio" name="3" id="3" value="13"></th>
</tr>
</thead>
</table>
シナリオ:
上記のコードは、表 1 では 6 から 10、表 2 では 11 から 13 の間の値を持つ "3" という名前の PHP の POST 変数を生成します。たとえば、3 番目のボタン (値 = 8 または値 = 13)) を選択すると、非表示の入力フィールドに値 3 が送信されます。5 番目のボタンが選択された場合 (値 = 10)、非表示の入力フィールドに値 5 が送信されます。