我尝试根据复选框输入更新列值。单击是触发代码(我使用alert()测试)但数据库中没有发生更新,并且控制台中没有显示错误。请注意我使用图片替换复选框。
CSS
input[type=checkbox] {
display: none;
}
label:before {
content: url("../images/house.png");
z-index: 100;
}
:checked + label:before {
content: url("../images/home.png");
}
PHP / HTML
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo
'
<div class="mx-auto" style="max-width:500px;">
<div class="form-group">
<div class="form-inline">
<div class="form-group col-1">
<input type="checkbox" name="home['. $row["id"].']" id="'. $row["id"].'" ' . ($row["home"]==1 ? ' checked="checked"' : '') . '>
<label for="'. $row["id"].'"></label>
</div>
<div class="col-10" style="font-weight:bold;">
'.$row["address"].' '. $row["suburb"].'
</div>
<div class="col-1">
<a style="float:right; margin-bottom:5px;" href="'.$row["gmap"].'" class="btn btn-success">Go</a>
</div>
</div>
AJAX
<script>
$(document).ready(function(){
$('input[type="checkbox"]').on("click", function(){
$.post("work/updateaddress.php",{home:this.checked,id:this.id});
});
});
PHP
$id = $mysqli->real_escape_string($_POST['id']);
$home = $mysqli->escape_string($_POST['home']);
if(isset ($_POST["home"])) {
$sql = "UPDATE addresses SET home='$home' WHERE id='$id'";
if($mysqli->query($sql) === TRUE){
} else {
echo "error" . $sql . "<br>".$mysqli->error;
}
}
答案 0 :(得分:0)
您需要以这种方式访问POST变量
$_POST['home'][$_POST['id']]
因为您已将名称定义为
<input type="checkbox" name="home[id]">
我建议你检查id和复选框状态,如下所示:
$id = intval($_POST['id']);
$home = ($_POST['home'][$_POST['id']] == 'true' ? 1 : 0);