I’m studying CodeIgniter and its software patterns. Which should be created first, the view or the controller?
I’m studying CodeIgniter and its software patterns. Which should be created first, the view
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Model because that is your application. Controller and View only form one interface to the Model. One could say, the controller is the door to your house. What do you build first? The door or the house? Right, so build the Model first. Then add an interface to it.