Saturday, 3 March 2012

How can we know the number of days between two given dates using PHP? | PHP

$date1 = date("Y-m-d");
$date2 = "2006-08-15";
$days = (strtotime($date1) - strtotime($date2)) / (60 * 60 * 24);