Forum Moderators: coopster
Here is the original code
$option_disp = date('F',mktime(0,0,0,$i));
Where $i increases by 1 from 1 - 12.
Here is the output I get.
$option_disp = date('F',mktime(0,0,0,1));
This outputs January.
$option_disp = date('F',mktime(0,0,0,2));
This outputs March.
Where did February go?
Is there a better way to do this?
Any help is greatly appreciated. Thank you.