hi,

this error occurs when i enter the firstname and lastname in a form
and try to update my profile. it is supposed to write this information
in the database. why does this error pops up, although i do have these
two attributes in my table??


my controller:

     function updateProfile()
     {

                $updates = $this->User->findByUsername($this->Session-
>read('User.username'));
                                $updates['User']['firstname']= 
$this->data['User']['firstname'];
                                $updates['User']['lastname']= 
$this->data['User']['lastname'];


my view

                        <?php echo $form->create('User', array('action' =>
'updateProfile')); ?>

                        <div class="row">
                                <span class="profiledata"><?php   echo 
$form->input('Vorname',
array('value' => $user['firstname']));   ?></span>
                        </div>

                        <div class="row">
                                <span class="profiledata"><?php   echo 
$form->input('Nachname',
array('value' => $user['lastname']));   ?></span>
                        </div>


                                <?php
                                echo $form->button('Sichern', array('type' => 
'submit'));
                                echo $form->end();
                                ?>


thx for your help :)

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