public function action_index()
{
Session::set('id', '12');
}
public function action_index()
{
$this->template->title = Session::get('id');
$this->template->content = View::forge('workflow/index');
}
Are you using cookie based sessions? Do you have a redirect after you set the session variable?
public function action_index() {
$this->template->title = \Session::get('id');
$this->template->content = View::forge('workflow/index'); }
This works for me. It looks like you're new here. If you want to get involved, click one of these buttons!