执行以下代码后,如果我启用了删除查询,$i
则不会回显。$q3
如果我评论它或删除它$q3
,那么一切都很好。
我怎样才能让它工作?
$isfound = in_array("empty",$currentrooms0);
if($isfound===true){
for($i=0; $i<count($currentrooms0);$i++){
if($currentrooms0[$i]=="empty"){
$q3=mysqli_query($conn0,"delete from room_attributes where _current_created_rooms='empty' order by id desc limit 1")or die(mysqli_error($conn0));
echo $i-1;
break;
}
}