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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *