Kemik Posted August 22, 2007 Share Posted August 22, 2007 Hello all, Does anyone know of a script which takes a date (in datetime format) and then displays a different image depending on how many days ago the date was. E.g. if ($date < 7 days ago){ display 7days.gif } elseif ( 7 days < $date < 14 days ago){ display 14days.gif } else { display old.gif } I'd code it myself, but I don't know how to find out if it's more / less than x days. If I could work out how to make it calculate the difference between the dates then I'd be ok. Thanks. Quote Link to comment Share on other sites More sharing options...
Barand Posted August 22, 2007 Share Posted August 22, 2007 $days = floor((time() - strtotime($date))/86400); Quote Link to comment Share on other sites More sharing options...
Kemik Posted August 22, 2007 Author Share Posted August 22, 2007 Perfect, thanks. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.