Um pequeno trecho de código que ajuda a listar todos os meses do ano entre duas data!
<?php
$startDate = strtotime("$startYear/$startMonth/01");
$endDate = strtotime("$endYear/$endMonth/01");
$currentDate = $endDate;
while ($currentDate >= $startDate) {
echo date('Y/m',$currentDate);
$currentDate = strtotime( date('Y/m/01/',$currentDate).' -1 month');
}
fonte:http://stackoverflow.com/questions/1449167/list-of-all-months-and-year-between-two-dates-in-php
Show! Fiz mô POG aqui pra executar uma função semelhante, agora ficou bem melhor…