[PHP] parent and grandparent member functions

2001-06-20 Thread Lenar Lõhmus
Hello, I hit a wall. No offense, but this OO stuff in PHP is somehat weird, but skip to the problem. I have for example three classes: class a { function make() { // some code } } class b extends a { function make() { // some code parent::make(); } }

RE: [PHP] parent and grandparent member functions

2001-06-20 Thread scott [gts]
(); } } $c = new c(); $c-make(); ? -Original Message- From: Lenar Lõhmus [mailto:[EMAIL PROTECTED]] Sent: 20 June 2001 09:01 To: [EMAIL PROTECTED] Subject: [PHP] parent and grandparent member functions Hello, I hit a wall. No offense, but this OO stuff in PHP is somehat

Re: [PHP] parent and grandparent member functions

2001-06-20 Thread Lenar Lõhmus
$c-make(); ? -Original Message- From: Lenar Lõhmus [mailto:[EMAIL PROTECTED]] Sent: 20 June 2001 09:01 To: [EMAIL PROTECTED] Subject: [PHP] parent and grandparent member functions Hello, I hit a wall. No offense, but this OO stuff in PHP is somehat weird, but skip to the problem.