Basic Ways to form an MVC System

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
LiveFree
Forum Contributor
Posts: 258
Joined: Tue Dec 06, 2005 5:34 pm
Location: W-Town

Basic Ways to form an MVC System

Post 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!
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Post 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 :)
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Post by daedalus__ »

Read about MVC, code something, repeat.
Post Reply