views:

65

answers:

1

what is no-oo mvc in php?

If it is possible, give an example. If not, why?

+3  A: 

MVC's main point is to split user interface interaction into three distinct roles. The most important separation is between model (M) and presentation layer (V and C). MVC does not say which paradigm to use. And since Prodecural coding does not mean unorganized coding, it's very much possible to use this paradigm for this pattern.

Gordon