$select->where('MATCH(text,phone,phone2,email,email2,www,gadi,augums,skype) AGAINST(?)',$searching_string);
$select->order('MATCH(text,phone,phone2,email,email2,www,gadi,augums,skype) AGAINST(?) DESC',$searching);
Getting error:
Message: SQLSTATE[HY093]: Invalid parameter number: no parameters were bound
The problem seems in the line with $select->order.
It's for relevance in results. How it should look in Zend Framework?
And there seems some problem with searching. Some words it searches and some not. Why is this working that way? :Z
Thanks