I'm trying to figure out how i can do this, here's a very general explaination:
I've got a mysql table that stores articles and the dates they were written.
Each week new articles will be added. What I want to do is be able to query the database and get the most recent articles for the week and display them.
What I want to know is what would the mysql query look like to get these most recent articles ? (but with dates that aren't in the future, because articles will be uploaded before they are ready to go live. I want them to only go live once the article date is at least the same date as the current date).
Is there a way I can do this?
Thanks in advance.