Im trying to generate a list of months along with the year and 1st date of the month.
I use the below code, but oddly February is missing and March is being repeated 2 times
Code
for ($i = 1; $i <= 12; $i++):
$year='2013';
$month_numb = date($year.'-m-01', mktime(0,0,0,$i));
echo $month_numb.'<br>';
endfor;
Output
2013-01-01
2013-03-01
2013-03-01
2013-04-01
2013-05-01
2013-06-01
2013-07-01
2013-08-01
2013-09-01
2013-10-01
2013-11-01
2013-12-01
Can someone tell me why this is happening and how do i fix it?