$start = $month = strtotime('2021-02-01');
$end = strtotime('2021-05-01');
while($month < $end)
{
echo date('F Y', $month), PHP_EOL;
$month = strtotime("+1 month", $month);
}
Subscribe to the Email Newsletter