CodeIgniter Basic Tutorial
Performance & Utilities
CodeIgniter Advanced
A View in CodeIgniter is a PHP file that contains HTML and minimal PHP to display data to the user.
It’s part of the MVC architecture:
Views are stored in:
app/ └── Views/ └── controller-name/ └── file-name.php
Example: About Page View
View (app/Views/about/index.php
)