Page 1 of 1

Basic Ways to form an MVC System

Posted: Wed Sep 20, 2006 7:03 pm
by LiveFree
Ok So Ive decided to create a personal framework that I can use as a base for my projects. I want to this framework to be MVC, yet I cant understand the underlying code.

For example, I know I need a wrapper (index.php) file in the doc root, but what code is in that file?

So what Im looking for is the basic ways to build an MVC system.

Thanks!

Posted: Wed Sep 20, 2006 7:14 pm
by alex.barylski
Ok, first things first...you seriously need to read more articles on the subjects of MVC, page controller and front controllers if your asking this question.

Secondly, look into model 1 and model 2 architectures. This will help guide you in how to build a MVC framework, once you can make the distinction between model1 and model2 you will see what I mean.

I'm sure someone else will add to or retract something I have written here :P

Cheers :)

Posted: Wed Sep 20, 2006 7:43 pm
by daedalus__
Read about MVC, code something, repeat.