The information is not printed in your view? If there is so, it was because
you need to call so

$this->data = $this->Yourtable->findByAField($field_value);

And whe you want to update

$this->YourTable->read('null', $tableId);
$this->YourTable->set('field_1', $field_1);
$this->YourTable->set('field_2', $field_2);

I hope its help you
---

Norman Paniagua


2010/7/25 Tomfox Wiranata <tomfox.wiran...@gmail.com>

> 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 cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com<cake-php%2bunsubscr...@googlegroups.com>For
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

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 cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to