What I need to do is to select records withe the date column starting 60 days ago and into the future as far as there are record.
This client
Daniel Hinkley Web Site has speaking engagements which currently show all future engagements but we want to also show those for the last sisty days as he wants to show slide lists and notes to the events after the fact!
Sort of like
SELECT *
FROM event_eve
WHERE date_start BETWEEN (CURDATE() -60) AND (>CURDATE())
Nick