Is possible to "learn" codeigniget to recognize chars like ľščťžýáíé or ĽŠČŤŽÝÁÍÉ ? Cause I want not to have search sensitive to those chars. For example if I have in my table row "Šilíoá" and I search for silioa nothing will be foung. But if I am searching for silioa it will be found. So I think that problem is in Š is it possible for example to learn codeigniter to recognize Š? Or Ž etc.? Here is my query:
$q = $this->db->query("SELECT * FROM (`knihy`)
WHERE `stav` = 1
AND (Autor1 LIKE '$vyraz'
OR Autor2 LIKE '$vyraz'
OR Autor3 LIKE '$vyraz'
OR Autor4 LIKE '$vyraz')
ORDER BY `id` desc LIMIT $limit OFFSET $offset ");