I have a Calendar of Events table and I would like to select events with dates equal to or greater than today. When I use the following SELECT statement, it only retrieves events in the future (> NOW()):
<?php
$db->query("SELECT * FROM events WHERE event_date >= NOW()");
?>
How would I go about selecting all events that are either today or in the future?
Thank you
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…