It's late and I'm tired. My brain is on it's last leg...
I have a numeric value (11), how do convert it to full month name?
Tried something like that but failed:'
$currMonth=date('n',time());
$current_month = date('F', strtotime($currMonth));
$nxtMonth = $currMonth + 1;
$next_month = date('F', strtotime($nxtMonth));
$nxtMonth == 11;
Need $next_month to be November.