[送信]ボタンをクリックしたときにチェックボックスをオンにすると、スクリプトを実行します。ボタンクリック時にクエリを実行するチェックボックスがオンの場合
私は私のoverview.php
に次のコードスニペットました:
<table style="width: 100%; font-size: 11;">
<tr>
<td colspan="6">
<form method="post" action="update.php" target="_blank">
<script language="JavaScript">
function toggle(source) {
checkboxes = document.querySelectorAll("input[name^='box[']");
for(var i=0, n=checkboxes.length;i<n;i++) {
checkboxes[i].checked = source.checked;
}
}
</script>
<input type="submit" name="update" value="Update - LoL/BoL">
<input type="checkbox" onClick="toggle(this)" name="All" value="All"> Select all
</form>
</td>
</tr>
<tr>
<th>ve067</th>
<th>ve378</th>
<th>ve724</th>
<th>ve725</th>
<th>ve726</th>
<th>ve727</th>
</tr>
<tr>
<td>
<form method="post" action="update.php">
<input type="checkbox" name="box[1]" value="ve067_LB1"> LeagueBot 1<br>
<input type="checkbox" name="box[2]" value="ve067_LB2"> LeagueBot 2<br>
<input type="checkbox" name="box[3]" value="ve067_LB3"> LeagueBot 3<br>
<input type="checkbox" name="box[4]" value="ve067_LB4"> LeagueBot 4<br>
</form>
</td>
</tr>
</table>
をそして、これは私のupdate.php
からコードスニペットです:
<?php
if(isset($_POST['update'] && $_POST['box[4]']) {
// code here
}
?>
しかし、それは私のために動作しません。
*については詳しく解説できますか?*何が起こりますか?ログまたはデベロッパーコンソール(F12)のエラー?期待される結果は何であり、現在の結果は何ですか? – Technoh
私は 'if(isset($ _ POST ['update'])){code}'で_submit button_を照会するだけです。 チェックボックス_box [4] _がチェックされている場合、クエリを追加したい – Sorrow91
最初に条件が間違っている場合は、オンラインでいくつかの場所を共有できますか? – Shahbaz