How to find number of days between two dates using PHP?
$now = time(); // or your date as well $your_date = strtotime("2010-01-31"); $datediff = $now - $your_date; echo round($datediff / (60 * 60 * 24));
1.4m articles
1.4m replys
5 comments
57.0k users