I'm coding a uploader that saves into the db the date when a file is uploaded using CURDATE(). I want to compare the current date with the one stored into the db in order to change the color of the icon related to the file depending on how long has this feel been uploaded. For instance, if less than a week, the icon will be green, if more than a week, it will be yellow, if more than two weeks, red. How can I do it? Thanks.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
I think datediff is something you're looking after http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_datediff
|
|||
|
|
Basically, this will return the first value (it's the
|
|||
|
|
|
Once you have your date from MySQL you can use strtotime($result['date']) to get the timestamp and then do pretty much anything you want with it. |
|||
|
|