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. Link to comment https://forums.phpfreaks.com/topic/66227-solved-activity-image/ Share on other sites More sharing options...
Barand Posted August 22, 2007 Share Posted August 22, 2007 $days = floor((time() - strtotime($date))/86400); Link to comment https://forums.phpfreaks.com/topic/66227-solved-activity-image/#findComment-331250 Share on other sites More sharing options...
Kemik Posted August 22, 2007 Author Share Posted August 22, 2007 Perfect, thanks. Link to comment https://forums.phpfreaks.com/topic/66227-solved-activity-image/#findComment-331256 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.