Re: [PHP] PHP class and extends

2003-09-24 Thread Burhan Khalid
BENARD Jean-philippe wrote: [ snip ] Is there something to do in order that when I use xxx_cl_app->ExecuteQuery(), there's a function ExecuteQuery() in xxx_cl_app that do something like this : (xxx_cl_app.php) function ExecuteQuery(x,y) { $tmpResult = [herited_class]->ExecuteQuery(x,y);

RE: [PHP] PHP class and extends

2003-09-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
: BENARD Jean-philippe [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 7:59 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP class and extends Hi ! I've got a problem with class extends. I've a "top" class which name is cl_app. xxx_cl_app is an extend of cl_

[PHP] PHP class and extends

2003-09-23 Thread BENARD Jean-philippe
Hi ! I've got a problem with class extends. I've a "top" class which name is cl_app. xxx_cl_app is an extend of cl_app. Cl_app define a function called "ExecuteQuery". xxx_cl_app define this function too but this one is obsolete. Now, I want to use the cl_app "ExecuteQuery" function in my