作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的事件存储在 mysql 中,我用 php 检索这些事件。我检索月、日和年,然后将其添加到数组中。有没有办法循环遍历该数组并获取下一个即将发生的事件?
$array = [''];
$result = mysqli_query($con,"SELECT * FROM events") or die ("couldn't fetch query");
// output data of each row
while($row = mysqli_fetch_array($result)) {
$date = $row['eMonth'] . "-" . $row['eDay'] . "-" . $row['eYear'];
array_push($array, $date);
}
最佳答案
为每个事件创建一个日期列,并使用此查询从当前日期选择接下来的 3 个事件
SELECT *
FROM EVENTS
WHERE event_date >= CURDATE() ORDER BY event_date ASC LIMIT 3;
关于php - 循环遍历数组并回显下一个事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51937586/
我是一名优秀的程序员,十分优秀!