@openside("Kalendarz"); define ('ADAY', (60*60*24)); $datearray = getdate(); $month = $datearray['mon']; $year = $datearray['year']; $start= mktime(0,0,0,$month,1,$year); $firstdayarray = getdate($start); $months= Array('','Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec', 'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'); $days = Array('Ni','Pn','Wt','Sr','Cz','Pt','So'); ?>
echo "$months[$month] $year";?>
|
|
}
for( $count=0;$count<(6*7);$count++)
{
$dayarray = getdate($start);
if((($count) % 7) == 0)
{
if($dayarray['mon'] != $datearray['mon'])
break;
echo "|||||
echo "$dayarray[mday]";?>
|
$start += ADAY;
}
else
{
?>
echo "$dayarray[mday]";?>
|
$start += ADAY;
}
}
}
?>