ciao !!
come si fa a impostare il PHP in modo che stampi i nomi dei mesi in italiano ?
ecco il codice:
setlocale(LC_ALL,'it_IT');
$first_day = mktime(0,0,0,$mon,1,$year);
$start_day = date("w",$first_day);
$res = getdate($first_day);
$month_name = $res["month"];
$no_days_in_month = date("t",$first_day);
come vedete ho messo SETLOCALE ma non mi da quello che voglio. I mesi sono sempre "July" "August" e cosi via