Im trying to select a bunch of stuff from a database. Each have a date and i’d like to only display the ones whose date is equal to today onwards.
$sql="SELECT * FROM bs_events WHERE NOW() ORDER BY eventDate ";
I have tried looking everywhere and cannot find anything.
Thanks for any help guys
I think you want
where EventDate >= now()