Hello:
How to inherite multiple class. For example:
class child extends parent { }
What if I want to extend more that one classes.
Alan
GOOD:
class grandson extends child { }
BAD:
class brother { }
class sister { }
class incest extends brother extends sister{ }
no go...
Saludos Gerardo
Your can't do that.
You'll have to extend the classes one at a time,
Grandchild extends on child, which extends on Parent.
and constructors are not inherited in PHP... BTW