Views in CodeIgniter — a practical guide to CodeIgniter views with clear examples you can reuse in real projects.
CodeIgniter Tutorial Series (15/74). Prefer one article? Read the complete CodeIgniter tutorial.
Short description
Views live in `app/Views`. Keep them mostly presentational — put business logic in models/controllers.
Simple view
<!-- app/Views/home.php -->
<!DOCTYPE html>
<html>
<head><title><?= esc($title) ?></title></head>
<body>
<h1>Welcome</h1>
</body>
</html>