Jan 13, 2010
List Date Difference
Some of you might have come across the requirement for displaying all the dates between give two dates, especially for drop down listing of dates.
I have developed a sample code for getting all date ocurrences between give two dates.
<?php
$fromDate = "01/01/2009"; //format mm/dd/yyyy
$toDate = "01/25/2010"; //format mm/dd/yyyy
$dateMonthYearArr = array();
$fromDateTS = strtotime($fromDate);
$toDateTS...
read more
