In MVC, what mechanism is typically used for Views to display data provided by Models?
- AJAX requests
- Direct database queries
- Template Engine
- View calls Model methods
Views in CodeIgniter often use template engines to display data from Models. A template engine separates the presentation logic from the application logic, enhancing maintainability.
Loading...
Related Quiz
- ________ flow in OAuth is recommended for highly confidential client applications.
- The ________ function in CodeIgniter's Query Builder is essential for debugging by returning the final query string.
- What does 'MVC' stand for in web development?
- When integrating third-party APIs, a developer creates a Helper to manage API requests. This Helper should be stored in ________.
- How can you enable profiling in a CodeIgniter application?