thanks for your messages

I've tried but $user is always empty in my login message

function login(){
        $txtmsg = "Bienvenue ";
        $user = $this->Session->read('Auth.User.first_name'); // $user is
empty
        //$user = $this->Auth->user('first_name'); // $user is empty
        $flashmsg = $txtmsg.$user;
        $this->Session->setFlash($flashmsg, 'growl',
array('type'=>'important'));
}

if I debug $_SESSION, I see the infos but the array [Message] is
before the array [Auth], could it be the source of my problem ?

Array
(
    [Config] => Array
        (
            [userAgent] => e3e6252595657764bf058df0bc2e9178
            [time] => 1280533844
            [timeout] => 100
        )

    [Message] => Array
        (
            [flash] => Array
                (
                    [message] => Bienvenue
                    [element] => growl
                    [params] => Array
                        (
                            [type] => important
                        )

                )

        )

    [Auth] => Array
        (
            [User] => Array
                (
                    [id] => 2
                    [username] => melodyn
                    [first_name] => Melody
                    [last_name] => Nelson
                    [email] =>
                    [disabled] => 0
                    [created] => 2010-07-11 23:06:49
                    [updated] => 2010-07-29 17:30:41
                )

        )

)

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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

Reply via email to