I am new to CakePhp and I am trying to pass a variable from my app_controller.php to my default.ctp.
I tried this in my app_controller.php:
function beforeFilter(){
$this->set('my_var', $my_var_to_pass);
}
But when I do this in my default.ctp:
echo $my_var;
I got it:
Notice (8): Undefined variable: my_var [APP\views\layouts\default.ctp, line 72]
I am using Cake 1.3!
Some ideas?
Thank!
source
share