CakePHP Session variable use in view page?

cakephp, php, session

Solution

There's a SessionComponent available in your Controller that you can use like `$this->Session->write('Name', 'Value');`. Analogously there's also the SessionHelper for the View, which does very similar things and can be used like `$session->read('Name');`.

Problem

I have a variable contaning "username" and want to get these values via session to any of the view pages. How can I get this session variable in the view ?

Original source

Related problems