获取编辑数据PHP的Checkbox值

时间:2017-08-23 20:19:49

标签: php html checkbox

<td align="center"><input type="checkbox" name="checked_id[]" class="checkbox" value="<?php echo $id_student;?>"/></td>


<button type="button" class="btn btn-lg btn-success" onClick="window.location = 'edit.php?ktp=<?php echo $id_student; ?>'">EDIT</button

如何获取复选框的值以便在edit.php等其他php页面上使用? Id_student = 3454?我的结果可能与我选择的复选框值不同。

1 个答案:

答案 0 :(得分:0)

我不确定我清楚地理解你的问题,但是根据我的理解,我希望这个例子有帮助

$.ajax( {
    type: 'POST',
    url: '/ajax/checkbox.php',
    data: { foton : $('input:checkbox:checked').val()},

    success: function(data) {
        $('#message').html(data);
    }
} );
/ajax/checkbox.php?name=foton

您有一个名为$_GET的{​​{1}}参数,其name

您在名为foton的{​​{1}} 参数中添加了复选框的值。

指定数据时,您不必在$_POST网址中设置查询字符串(而不是想要重定向到将处理您的{{1}的网页参数一部分)。