Re: [PHP] parent and grandparent member functions

2001-06-20 Thread Lenar Lõhmus
ds b { > function make() { > // some code > parent::make(); > } > } > > > > $c = new c(); > $c->make(); > > ?> > > > > -Original Message- > > From: Lenar Lõhmus [mailto:[EMAIL PROTECTED]] > > Sent: 20 June

RE: [PHP] parent and grandparent member functions

2001-06-20 Thread scott [gts]
AKE". ..am i misunderstanding your problem? 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, > >

[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(); } } cla