Re: [PHP] oop problems code
ORLANDO POZO wrote: Hello, mailing list, I have problem with this oop code: [snip bad code] -- the output of it is: [snip output] ---
[PHP] oop problems code
Hello, mailing list, I have problem with this oop code: class Person { var $name, $address, $age; function Person($name, $address, $age) { $this->name = $name; $this->address = $address; $this->age = $age; } } Class Employee extends Person { var $position, $salary; function