When i pass in 9, i get august... so maybe this will be better...libeco wrote:Or:
Multi language:function get_month_name($month){ return strftime('%B', mktime(0, 0, 0, $month, 0, 0)); }
function get_month_name($month){ $month = $month+1; return strftime('%B', mktime(0, 0, 0, $month, 0, 0)); }