I am just new to CodeIgniter and i encounter a PHP error -
Severity: Notice Message: Undefined variable
My Controller : C:\wamp\www\Code1\application\config\hello.php
<?php
class Hello extends Controller {
var $name;
var $color;
function Hello()
{
parent::Controller();
$this->name = 'Andi';
$this->color= 'red';
}
function you()
{
$data['name'] = $this->name;
$data['color'] = $this->color;
$this->load->view('you_view', $data);
}
}
?>
My Views : C:\wamp\www\Code1\application\views\you_view.php
Hello,
<font color="<?=$color?>"><?=$name?></font>!