Current month + 1?

Hi,
i want to display the name of the current month + 1 in php, anyone know how this is done?

e.g. Current month is ‘March’, i want to write ‘April’

Well, ideally i want to output the current month, the next month and the month after that…

So it would say
<div><h1>March</h1></div>
<div><h1>April</h1></div>
<div><h1>May</h1></div>

Any help would be great :slight_smile:


$start = time();
for($i = 1; $i <= 12; $i++){
    echo date('M', $start) . '<br />';
    $start = strtotime("next month", $start);
}