请帮助我使用我的php脚本,我正在尝试使用mysqli预处理语句更新行,没有显示错误,但它没有更新我的行;任何帮助?!
$c=mysqli_connect('localhost','client','','bdd');
if (!$c) {
echo 'Erreur de connexion a la base de donnees';
} else {
if (isset($_POST['submit'])) {
$faite=1;
for($i=0;$i<sizeof($idg);$i++){
$var=$idg[$i];
$update="UPDATE graissage SET faite= ? where id= ? ";
echo $update;
$stmt2= mysqli_prepare($c, $update);
echo mysqli_error($c);
mysqli_stmt_bind_param($stmt2, "is", $faite,$var);
echo mysqli_error($c);
mysqli_stmt_execute($stmt2);
echo mysqli_error($c);
}
}
}