cakephp, set 1 to webstuff field if these keywords matches
- by user259546
this is what i have so far
function contact() {
if (!empty($this->data)) {
$this-Contact-create();
if ($this-Contact-save($this-data)) {
if($this-data['Contact']['comments'] == ' website,newsleter etc '){
$this-Contact-saveField('webstuff', 1);
}
$this-Session-setFlash('done');
$this-redirect('/');
} else {
$this-Session-setFlash('faild');
}
}
}