Oto kod :
<?php class Calendar{ var $_shortDays = null; var $_longMonths = null; function Calendar() { $this->_shortDays = array('Pn', 'Wt', 'Sr', 'Cz', 'Pt', 'Sb', 'N'); $this->_longMonths = array('Styczeń', 'Luty', 'Marzec', 'Kwiecień', 'Maj', 'Czerwiec', 'Lipiec', 'Sierpień', 'Wrzesień', 'Październik', 'Listopad', 'Grudzień'); } function showCslendar() { '. $this->_longMonths[$actMonth-1] .', '. $actYear.' ' . for ($nr = 0; $nr < 7; $nr++) '.$this->_shortDays[$nr] . ''; ';} if($startDay == 0) $startDay = 7; for($nr=0; $numberOfDay+$startDay-1; $nr<$numberOfDay; $nr++){ if($nr - $w + 2 <=0){ '; continue; } else{ if($nr % 7 == 0) '; if($nr - $startDay + 2 == $actDay) '.($nr - $startDay + 2).''; else '.($nr - $startDay + 2).''; } } '; } } ?>