gpt4 book ai didi

PHP如何查询日期时间?

转载 作者:行者123 更新时间:2023-11-29 08:25:27 24 4
gpt4 key购买 nike

对不起,我的英语有点,我的日期列是 1375801584 有值(value)的纪元格式。我只想选择现在和下次记录,我想隐藏历史记录。例如:19:45 及以后。

<?php
$sql = mysql_query("select tarih from table where tarih < '$date' order by tarih ASC");
while($r = mysql_fetch_assoc($sql)){
?>
<tr><td><?php echo date("Y-m-d", $r['tarih']); ?></td>
<td><?php echo date("H:i", $r['tarih']); ?></td></tr>
<?php
}
?>

最佳答案

你关闭了。您当前的查询正在选择较旧记录 ( < )。尝试使用>= :

$sql = mysql_query("select date from table where date >= '$date;' order by date ASC");

关于PHP如何查询日期时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18090544/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com