Roy Barten Posted February 13, 2009 Share Posted February 13, 2009 Hello, now i have another question. I have 3 dates. A startdate, enddate and a date to compare with. I have to check if date3 is between the other 2 dates. For example: startdate: 2009-03-01 12:00 enddate: 2009-03-03 14:00 date3: 2009-03-02 13:00 date3 is in this example between the start and enddate, but how do I check this in PHP code? Link to comment https://forums.phpfreaks.com/topic/145048-solved-php-date-between/ Share on other sites More sharing options...
Prismatic Posted February 13, 2009 Share Posted February 13, 2009 <?php $s_date = strtotime("2009-03-01 12:00"); $e_date = strtotime("2009-03-03 14:00"); $date = strtotime("2009-03-02 13:00"); if($date > $s_date && $date < $e_date) { print "Date is between start and end"; } else { print "Date is outside start and end"; } ?> Link to comment https://forums.phpfreaks.com/topic/145048-solved-php-date-between/#findComment-761145 Share on other sites More sharing options...
Roy Barten Posted February 13, 2009 Author Share Posted February 13, 2009 GREAT!!!! Thank you!!! Link to comment https://forums.phpfreaks.com/topic/145048-solved-php-date-between/#findComment-761146 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.