[PHP]Event Display Help

does anyone know how to display a bit of informatio until the date provided with it. e.g. say my band has a gig on the 5th of may, show the gig info untill then then hide it.
Any ideas?

I would use a database to pull the info and then all that would be filtered through in the “select” statement

www.php.net/date

Just do a check to see whether the day has come, then mark a field in the database for the event as happened. In the select statement, have a WHERE happened=‘0’, to select all the events to come. Mark all the other events with a 1. You could also just delete the event, up to you.