Hello, Currently using : //$StatData['month'] is 11 $Month = date("F", mktime($StatData['month'])); PHP: Yet $Month shows December? I would prefer if it showed November! Thanks.
Obviously its not always goign to be 11 as it is a variable which will change, else i would just print November in the html... Anyway, i managed to fix it with : $Month = date("F",mktime( 0 , 0 , 0 , $StatData['month'])); PHP: