I'm making a search engine in PHP-MySQL, but I have troubles with special characters. Example: In the database exists a row with name='José'.
If I write in the code: select * from table where name like '%Jose%'; nothing appears. And viceversa.
But if I write: select * from table where name like '%José%'; appear the row.
How do I to appear the row 'José' when the user make a search with 'Jose' and 'José'?
Please, I'm sorry for my English.