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

Passing Data from Controller to View

Send arrays of data from controllers into views with the view() helper.

Passing Data from Controller to View — a practical guide to CodeIgniter pass data to view with clear examples you can reuse in real projects.

CodeIgniter Tutorial Series (14/74). Prefer one article? Read the complete CodeIgniter tutorial.

Short description

Pass an associative array as the second argument to `view()`. Keys become variables inside the view.

Controller → view data

return view('welcome', [
    'title' => 'Home',
    'user'  => 'Imtiyaj',
]);

// welcome.php
// <h1><?= esc($title) ?></h1>

Leave a reply

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