Ho usato questo... Cmq l'avevo risolto prima che postassi :tongue:...
Codice PHP:
<?
$giorno = getdate();
$month = $giorno['month'];
$mday = $giorno['mday'];
$year = $giorno['year'];
switch ($month) {
case "January":
$month = 'Gennaio';
break;
case "February":
$month = 'Febbraio';
break;
case "March":
$month = 'Marzo';
break;
case "April":
$month = 'Aprile';
break;
case "May":
$month = 'Maggio';
break;
case "June":
$month = 'Giugno';
break;
case "July":
$month = 'Luglio';
break;
case "August":
$month = 'Agosto';
break;
case "September":
$month = 'Settembre';
break;
case "October":
$month = 'Ottobre';
break;
case "November":
$month = 'Novembre';
break;
case "December":
$month = 'Dicembre';
break;
}
echo ($mday . ' ' . $month . ' ' . $year);
?>