How could I make a 'Today's featured article' system using PHP
and MySQL
?
Each day, the first time a user visits the site, I need to randomly select one article from the database, and that will be used for the whole day, for every user that comes to the site. This would happen without any intervention of the administrator, so the script would be triggered by the users visiting.
As I understand it, the first time a user visits the page on a new day, the script would randomly (or on some other basis) select an article, then flag it in the database, at the same time unflagging the article from the previous day. But what if two users are visiting the same page at the same time? This would probably mean there will be two articles flagged at the same time!
And how do you cope with time zones?