NOW(-6ren">
gpt4 book ai didi

php - 从当前日期开始的表格

转载 作者:行者123 更新时间:2023-11-30 00:20:17 25 4
gpt4 key购买 nike

$sqlStr = "SELECT name, datescheduled 
FROM table
WHERE datescheduled > NOW()
ORDER BY datescheduled DESC";

我想用一个表格来反射(reflect)上面的结果。我希望接下来 90 天的每一天都有一行,无论 MySQL 表是否有当天的条目。我怎样才能做到这一点?

最佳答案

添加:

$query1 = mysql_query($sqlStr);

echo "<table><tr>";
echo "<th>Name</th><th>Date Scheduled</th>";
while ($rows = mysql_fetch_assoc($query1)) {
echo "<td>" .$rows['name']. "</td>";
echo "<td>" .$rows['datescheduled']. "</td>";
}
echo "</tr><table>";

关于php - 从当前日期开始的表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23305314/

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