I have table named users in which users first name & last name are gets inserted. User name may contains special character also like "Cé".
So, when I go for search user from user table with special character as mentioned above(e.g. Cé) it returns the value in mysql but does not display in PHP array.
Search with normal keywords work properly in mysql as well as in PHP. But the issue raised for special character search. It search from query but it does not return in PHP variable.
I have written the below query.
SELECT first_name,last_name users WHERE concat(first_name,' ',last_name) LIKE '%Cé%' status='active';
It returns the result in MYSQL but not in PHP.