[PHP] OO: inheritance and function naming

2005-06-05 Thread Script Head
i have the following structure: class product { function create() { // db stuff } } class product_model { function create() { // db stuff } } class product_submodel { function create() { // db class } } i would like class product to extend class product_model and class

Re: [PHP] OO: inheritance and function naming

2005-06-05 Thread Richard Lynch
On Sun, June 5, 2005 4:56 pm, Script Head said: i have the following structure: class product { function create() { // db stuff } } class product_model { function create() { // db stuff } } class product_submodel { function create() { // db class } } i would