Sto provando un calendario in php. Va bene, l'unico problema è che i mesi vengono mostrati in inglese. Il codice è questo:
Codice PHP:
<?php
if (empty($_GET['month'])) {
    
$month date('m');
} else {
    
$month $_GET['month'];
}

if (empty(
$_GET['year'])) {
    
$year date('Y');
} else {
    
$year $_GET['year'];
}

$theday date('w'mktime(000$month1$year));

$daysinmonth date("t"mktime(000$month1$year));
?>

<?php
                $monthName 
date('F'mktime(000$month1$year));
                
$yearName date('Y'mktime(000$month1$year));   
                echo 
$monthName ' ' $yearName;
            
?>
Come si può modificare per risolvere il problema?
Lo script lo trovate a questo indirizzo: http://www.visitazione.it/calendar2