我想就论文PHP编程中的问题寻求帮助。我的问题是下面的代码。这种情况是,无论搜索查询是否在数据库中,我都必须搜索某些内容,应该总是显示一条消息。
$sqlRet = "SELECT * FROM tblbookcopy WHERE rId = '$roomno' AND (ciDate = '$checkin' OR coDate = '$checkout')";
if (mysqli_num_rows($conn,$sqlRet) != 0){
$Message = urlencode("ERROR");
// header("Location:index.php?Message=".$Message);
header("Location: ../ac-hotel/reservationform.php?Message=".$Message);
die;
}
请您启发我所错过的一切。谢谢你。
此致
雷
答案 0 :(得分:0)
只需在if语句之后添加else部分,例如:
else {
$message = "Some Other Message";
header("Location: ../ac-hotel/reservationform.php?Message=".$Message);
die;
}