I need to display a series of events ordered by date, starting with events happening today. Right now it says "WHERE date > NOW()"
Can I do something like "WHERE date > NOW() OR date = NOW()" ??
Look here Logical Operators
You can use OR, but in this case I'd use "WHERE date >= NOW()".