gpt4 book ai didi

php - 一次激活多个用户

转载 作者:行者123 更新时间:2023-11-30 22:24:33 24 4
gpt4 key购买 nike

我正在为我的学校做我的项目,我激活了一个用户帐户,如果管理员想一次激活一个用户,但是每当管理员想一次更新多条记录时,它就不会工作我试图将更新 SQL 包含在 foreach 循环中,但它给了我一个错误:foreach() 的参数无效请大家帮帮我,

 if(isset($_POST['activate'] )){
$impid = implode(',', $_POST['SSU']);

// for each .. to update more than one at once.
foreach($impid AS $i){
$sql = "UPDATE Accounts SET Activated = '".$_POST['activate']."' WHERE SSU IN('" . $i . "') ";
$result = mysqli_query($dbCIE, $sql) or die(mysqli_error($dbCIE));
}

// to test. if anything got effected..
if (mysqli_affected_rows($dbCIE) > 0) {
echo "<script type='text/javascript'> alert('Successfully Updated ')</script>";
}
else {
echo "<script type='text/javascript'> alert('Failed to Update ')</script>";
} // end the test.

}else{echo "<script type='text/javascript'> alert(' Select Whether to Activare Or Deactive ')</script>";}
}
} // end of first if $_post[update]

最佳答案

谢谢你们,我修复了它,我刚刚将 $_POST['SSU'] 传递给我的 foreach 并且它起作用了。

关于php - 一次激活多个用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35655255/

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