also i would to add
is this valid :
function setMonthNames(){
$this->aMonthNames = array(1=>'January',
'Febuary',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December');
}
this is the setter
and this is the getter
function getMonthNames(){
return $this->aMonthNames;
}
i would just like to ask if this is ok, i know in C your not supposed to use return statements if it's an array but im not quite sure in php