Hi all,
I have a database of events, and I need to be able to show an event occuring 'today'. The events have start and end dates in the format: Y-m-d h:i:s
How would I do this? I've tried queries along the lines of:
SELECT *
FROM tbl_events
WHERE start>='2009-11-03 16:00:00'
and end<='2009-11-03 16:00:00'
To no avail. Any advice would be greatly appreciated!