What does 'MVC' stand for in web development?
- Model-View-Component
- Model-View-Configuration
- Model-View-Content
- Model-View-Controller
In web development, 'MVC' stands for Model-View-Controller. This architectural pattern separates the application into three interconnected components: the Model (data and business logic), the View (presentation and user interface), and the Controller (handles user input and manages the communication between Model and View). Understanding MVC is fundamental to CodeIgniter development.
Loading...
Related Quiz
- How does CodeIgniter's 'Hooks' feature interact with custom libraries?
- When storing sessions in a database in CodeIgniter, the table must have a column named ________ to store session data.
- ________ in CodeIgniter is crucial for ensuring that cookies are sent securely over HTTPS.
- The HTTP header ________ helps in specifying which domains are allowed to embed a page, thus mitigating some types of XSS attacks.
- To safeguard a CodeIgniter application from XSS attacks while allowing some HTML content, a developer should use ________.