[PHP] oop problems code

2003-09-18 Thread ORLANDO POZO
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

Re: [PHP] oop problems code

2003-09-18 Thread Leif K-Brooks
ORLANDO POZO wrote: Hello, mailing list, I have problem with this oop code: [snip bad code] -- the output of it is: [snip output]