Jump to content

[SOLVED] Stop Past Dates


dmschenk

Recommended Posts

I have a simple event list that I would like to improve upon but I'm not exactly sure how to go about.

What I would like to do is when a date passes to yesterday I would like to stop displaying it in my events list.

I would also prefer not to delete its existence but change the field "Online = 1" to "Online = 0" in the database.

 

Is this something I can do or is there a better way?  I'm open to any ideas.

 

Here is my current sql statement:


$sql = "SELECT MONTHNAME(Date), EventDesc, Date, EventLocation, Online
FROM calendar 
WHERE Online = 1
ORDER BY Date";

 

Thanks

Dave

Link to comment
Share on other sites

I'd suggest changing the query to WHERE Date < '$today'.  Today is easily determined by date() function $today = date("Y-m-d").

 

I do hope that Date in your database is a rational date where comparisons are possible.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.