I have read this tutorial: http://www.tutorialspoint.com/design_pattern/mvc_pattern.htm
I have found it very understandable, but the structure of this Model-View-Controller is different from other examples.
In this tutorial, Controller is using data from Model (Student) and is updating View (StudentView) with new data.
But according the scheme on this picture, Controller is manipulating the Model and Model is updating View. According to this scheme Controller has link to Model, and Model has link to View (or I am wrong?).
This difference is confusing me. Can anyone help me and explain me the correct structure of MVC pattern.
