I am implementing a search function on a web site.
There is a field called nombre_ciudad and a value for this field is "Ciudad Juárez".
I need to search for the term "Ju" and now it doesn't work.
This is the part of the code that I am using now:
$sql.=" OR nombre_ciudad LIKE '".$requestData['search']['value']."%' ";
The search works for terms like "Ciudad Juarez", "C", "ciudad", but not for "arez" or "rez"