cakephp save to single field single row
from http://stackoverflow.com/questions/3615827/how-do-i-update-1-field-in-cakephp $this->Event->id = $id; $this->Event->saveField(’is_featured’, true);
from http://stackoverflow.com/questions/3615827/how-do-i-update-1-field-in-cakephp $this->Event->id = $id; $this->Event->saveField(’is_featured’, true);
$this->loadModel(’Company’); $this->Company->id = $company_id; $company_name = $this->Company->field(’name’);