select query in cake php with where and like

$data = $this->paginate('Recipe',array ("OR" => array ("title LIKE" => "%".$recipe_search_word."%","short_desc LIKE" =>  "%".$recipe_search_word."%")));
        $this->set('search',$data);

Comments