How can we know the number of days between two given dates using PHP?
February 4th, 2010
The start date and end date can be first found as shown below:
$date1= strotime($start_date); $date2= strotime($end_date); $date_diff = (($date1)- ($date2)) / (60*60*24)
RSS FEED