How to find number of days between two dates using PHP?
$diff = strtotime('2019-11-25') - strtotime('2019-11-10'); echo abs(round($diff / 86400));