Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
CodeIgniter

Views in CodeIgniter

Create PHP view files to render HTML output for your pages.

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>

Leave a reply

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