Hello together,

if have a cakephp software, which sends mail to the user, to activate
an account. No great think. And it works. So now the user can
diactivate the account
The Database will be updated but not all fields only one of four. The
reservation_status is right set but the other field are not null.

 $this->WishlistEntry->read(null, $entryId);
                $this->WishlistEntry->set(
                        'reservation_status' , 'FREE',
                        'reservation_email' , 'NULL',
                        'reservation_mail_sent', 'NULL',
                        'reservation_token' , String::uuid()

                );
                $this->WishlistEntry->save();

How do i set the reservation_email and the reservation_mail-sent to
NULL. How do i update the 4 of the 10 Fields of the table

Many greetings from an helpless cakeuser

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