From: Kevin <ke...@dr...> - 2006-05-01 20:01:14
|
> hrmm, i think php4 has trouble typing the only var in the class as an > array. > > go into that file, change the line... > public $vals =3D array(); > ...to simply... > public $vals; PHP4 doesn't use the public, private, protected, static keywords for clas= s methods or data members. That's the cause of the error. --=20 Kevin |