我目前正在使用数据库等。在一页上我的代码看起来像这样。我知道如何做准备好的语句,但是(在我的脑海中)无法弄清楚如何更改此查询以及在 bind_param 和 bind_result 等中放入什么。
任何帮助,将不胜感激。这是我的代码:
$topDate = date('Y-m-d', strtotime('-1 week'));
$query = "SELECT *, DATEDIFF(ends, starts) as datedifference FROM news WHERE DATEDIFF(starts,'$topDate')>0 ORDER BY starts LIMIT 12;";
if ($result = mysqli_query($connection, $query)) {
while ($row = mysqli_fetch_assoc($result)) {
//What i do with my data
}
}