作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在这里,我需要检查我的数据库,如果达到当前日期,那么我必须执行编码,否则必须跳过
function list_hotel_default($country,$city,$location,$fromdate,$todate,$roomtype,$adults,$child_no)
{
$condition="country='$country' AND city='$city' AND location='$location' AND show2web='1' AND expiry_date is greater than current date";
$active_hotel_get_qry = mysql_query("SELECT * FROM hoteldetails WHERE ".$condition);
}
如果有其他情况,则不应执行
如何做到这一点?
最佳答案
如果你只想用日期值检查它,那么你可以使用
function list_hotel_default($country,$city,$location,$fromdate,$todate,$roomtype,$adults,$child_no)
{
$condition="country='$country' AND city='$city' AND location='$location' AND show2web='1' AND expiry_date > CURDATE()";
$active_hotel_get_qry = mysql_query("SELECT * FROM hoteldetails WHERE ".$condition);
}
关于php - 如何仅在超过特定日期时才启用 mysql 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22881882/
我是一名优秀的程序员,十分优秀!