[EMAIL PROTECTED] wrote:
> i want to use session variable value in default layout for that i use
>
> $this->Session->Write('language','eng)');
> $this->set('error', 'eng');
>
> => this code is work , i got error value in default layout but
>
>
> $this->set('u_name',$this->Session->read("username"));
>
> => but with this code i don't get value of u_name
Try this right before you set 'u_name':
pr($this->Session->read("username"));
and see if "username" is set in session.
pr() and debug() are your best friends:
http://book.cakephp.org/view/458/Basic-Debugging
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---