我有这个代码如果在sql中有数据它工作正常但如果没有数据我在第8行得到错误但它应该在4-5行后停止并转到那个页面可以告诉我什么可能是错的?
<?php
include "../conf/pagebilleder.php";
$hugo = mysqli_num_rows($sql);
if ($hugo < 0){
header("Location: ../index.php");
}
else {
while($row=mysqli_fetch_array($sql2)){
}
}
?>
答案 0 :(得分:2)
如果等于登录if语句,是否应该等于?因为如果它为零,它应该去索引?
if ($hugo <= 0){
header("Location: ../index.php");
}