NixNod Posted October 19, 2007 Share Posted October 19, 2007 Hello guys, can someone give me an better explanation & example of the use of MVC? I'v already read all the MVC articles in the Resources topic. What the Controller really does? >> Just redirect to the right methods? Just it? What the Model really does? >> Abstract the data and prepare? What the View really does? >> Show up the data? If someone could write some example I'll be very happy. Thanks Quote Link to comment Share on other sites More sharing options...
trq Posted October 19, 2007 Share Posted October 19, 2007 Your best bet is probably to download one of the already established mvc frameworks (id'e recommend codeignitor simply for its simplicity) and work through the tutorials. Even if you dont end up actually using the framework this will give you a much clearer explination of how the mvc pattern can be applied to your own. It really is a great way to see the mvc in a real world example. Quote Link to comment Share on other sites More sharing options...
Jenk Posted October 19, 2007 Share Posted October 19, 2007 Controller - controls the application, decides what runs. Model - does the "work" is what fetches data, performs calculations, etc. View - Displays the output. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.