I basically have a simple calendar I set up. As of now, it shows "future" events. And then the event expires that day... I would love to find a WHERE statement that I can use to have that "event" stay up for 1 day past the "post_date"
(so if I post it as Nov. 15th,) The event would show: Name of event - Nov. 15th
And It would stay active until +1 day from post_date? (Nov. 16th would be the expire date)
Here is what I have so far:
WHERE DATE(FROM_UNIXTIME(`date`)) >= DATE(NOW())
Thanks in advance...