Re: [PHP-DOC] php5 and object

2004-07-28 Thread Gabor Hojtsy
Please ask support questions at [EMAIL PROTECTED] Regards, Gabor Hojtsy Krzysztof Gorzelak írta: Hello, I'm trying to make this code to work: // start of code abstract class Strona { abstract public function generuj_strone(); function foo() { generuj_strone(); } } class Ka

[PHP-DOC] php5 and object

2004-07-28 Thread Krzysztof Gorzelak
Hello, I'm trying to make this code to work: // start of code abstract class Strona { abstract public function generuj_strone(); function foo() { generuj_strone(); } } class Katalog extends Strona { public function generuj_strone() { echo "OK"; } } $