if语句与while函数

时间:2018-05-05 17:58:02

标签: php if-statement

我有这个代码如果在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)){ 
}
}
?>

1 个答案:

答案 0 :(得分:2)

如果等于登录if语句,是否应该等于?因为如果它为零,它应该去索引?

if ($hugo <= 0){
header("Location: ../index.php");
}