Posted by Script Head on 06/06/05 02:56
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
product_model to exten class product_submodel. how would i go about
this since all three classes contain a method create?
Navigation:
[Reply to this message]
|