I read the source code, but it seems a bit cryptic. I'm just trying to understand how CI converts an array into separate variables available for presentation.
I understand that the view is included in include (), but the variables seem to be effective only for the view.
Controller:
$this->load->view('about', array('title' => 'about'));
View:
<?php echo $title;
source
share