Cakephp

How do I update a single database field in cakephp?


How do I update a single database field in cakephp?

You can update a single database field in cakephp so:

 

$this->Model->id = $id;
$this->Model->saveField('myfieldtoupdate', $fieldtoupdatevalue);

Published: 1st June 2016 by

Adverts