Member
trycia.jones
How will you calculate days between two dates in PHP?
kenny
Calculating days between two dates in PHP
1 2 3 4 5 6
<?php $date1 = date('Y-m-d'); $date2 = '2015-10-2'; $days = (strtotime($date1)-strtotime($date2))/(60*60*24); echo $days; ?>