php get the number of days between two dates
$timestamp = strtotime($end_date) - strtotime($start_date);
$days = round($timestamp / 86400);
this code only works on linux box.
$timestamp = strtotime($end_date) - strtotime($start_date);
$days = round($timestamp / 86400);
this code only works on linux box.