Originaly posted on cakephp Q&A but i\'ll put it up here in hope of getting some answers.
I have a bunch of companies that has a status of 0 as default but somet
You can also fetch record by using following method: put values in an array e.g. $arr=array(1,2);
$res = $this->Model->find('all', array( 'conditions' =>array('Model.filedname'=>$arr), 'model.id' => 'desc' ));
I hope you will find answer.