In CakePhp, how MySQL Like works as case insensitive search. I have tried with following code but problem is also coming here.
If i am searching "Motel Park" then result is fine.
But when searching "motel park" no result is found.
In database Collation is latin1_swedish_ci
$where_condition = array('Ad.completed' => 1,
'Ad.address LIKE '=>'%'.$_REQUEST['address'].'%',
'Ad.status' =>$ad_status
);
$result = $this->Ad->find('all',array('conditions'=>$where_condition));