HTML
<? while ($row = mysqli_fetch_array($permission_data)){?>
<tr>
<td class="manager"><?=$row['name'];?></td>
<td class="manager">
<input value="1" <?=$row['sta']==1 ? 'checked' : '';?> type="checkbox" name="sta[]" id="sta<?=$row['permission_id'];?>"><label for="sta<?=$row['permission_id'];?>">✓</label></td>
<td class="manager">
<input value="1" <?=$row['rpt']==1 ? 'checked' : '';?> type="checkbox" name="rpt[]" id="rpt<?=$row['permission_id'];?>"><label for="rpt<?=$row['permission_id'];?>">✓</label></td>
<td class="manager">
<input value="1" <?=$row['prd']==1 ? 'checked' : '';?> type="checkbox" name="prd[]" id="prd<?=$row['permission_id'];?>"><label for="prd<?=$row['permission_id'];?>">✓</label></td>
<td class="manager">
<input value="1" <?=$row['odr']==1 ? 'checked' : '';?> type="checkbox" name="odr[]" id="odr<?=$row['permission_id'];?>"><label for="odr<?=$row['permission_id'];?>">✓</label></td>
<td class="manager">
<input value="1" <?=$row['usr']==1 ? 'checked' : '';?> type="checkbox" name="usr[]" id="usr<?=$row['permission_id'];?>"><label for="usr<?=$row['permission_id'];?>">✓</label></td>
<td class="manager">
<input value="1" <?=$row['blg']==1 ? 'checked' : '';?> type="checkbox" name="blg[]" id="blg<?=$row['permission_id'];?>"><label for="blg<?=$row['permission_id'];?>">✓</label></td>
<td class="manager">
<input value="1" <?=$row['stg']==1 ? 'checked' : '';?> type="checkbox" name="stg[]" id="stg<?=$row['permission_id'];?>"><label for="stg<?=$row['permission_id'];?>">✓</label></td>
<td class="manager">
<input value="1" <?=$row['mng']==1 ? 'checked' : '';?> type="checkbox" name="mng[]" id="mng<?=$row['permission_id'];?>"><label for="mng<?=$row['permission_id'];?>">✓</label></td>
</tr>
<?}?>
更新
foreach ($_POST['sta'] as $key) {
echo $key;
}
現在我勾選三個,就打印三個1
欄位是知道要改哪,但根本不知道要改的對象是誰(管理員 編輯 訂單 商品 會計)
數據庫結構
https://i.imgur.com/C9Ks1iQ.png
於是我寫完之後發現
我竟然沒辦法下 WHERE 條件
所以我找不到使用者是給誰(管理員 編輯 訂單 商品 會計)修改了值 ?
於是我邏輯又死了。。。。。
新增一個button,當勾選完checkbox,按下按鈕,把選到的id和值,用ajax一次傳到後端,
然後再進行更新。
var idAry = [];
var valAry = [];
$('input[name="mng[]"]:checked').each(function() {
idAry.push($(this).attr('id'));
valAry.push(this.value);
});
有固定id,name直接給就好了 (動態才給[]<input name="sta[$id]" >
我會寫這樣<input name="arr[$id][sta]" >