gpt4 book ai didi

php - 自动提交复选框以保存到 MySQL

转载 作者:行者123 更新时间:2023-11-29 18:55:02 25 4
gpt4 key购买 nike

我的网站上有一个页面,每个拥有帐户的用户都有 20 个复选框,我希望能够在更改复选框时提交该复选框以将其保存到数据库。很难解释,但我会附上代码、HTML 输出和 DB 的屏幕截图:

获取盒子的 PHP 代码是:

<?php  
for ($x = 1; $x <= 16; $x++) {
$result0 = $db->query("SELECT * FROM View WHERE `UserID` LIKE '" . $x . "'");
while($row0 = mysqli_fetch_array($result0)) {
if($row0['20']=="1"){$checked = "checked";}else { $checked = "";}}
echo "<td class=\"align_center\"><input type=\"checkbox\" name=\"20_" . $x . "\" " . $checked . "/>
";}
?>

checkboxes

html output

DB

希望有人能帮忙!请!

谢谢

最佳答案

下面的 ajax 请求将在每个复选框更改事件上触发。

您将需要一个 PHP 脚本来接收数据并更新您的数据库。

Ajax documentation了解更多详情。

$("input[type='checkbox']").on("change",function(){

$.ajax({
url: "someFileToUpdateDB.php",
data: $("#myForm").serialize(),
success: function(){
console.log("Change saved.");
},
error: function(request,status,error){
console.log("ERROR: "+error);
}
});

});

关于php - 自动提交复选框以保存到 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44193040/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com