I'm using PHP with MySQL to make a basic search engine on my website but the problem is that I'm using something for example:
SELECT * FROM shope_details WHERE shop_name = 'willy's Kitchen';
I want to search strings with apostrophe s in MySQL. I am unable to search in where condition and I don't want to use like operator in MySQL. I know this has been asked before, particularly for PHP, but I just don't know how I would implement this in a search query.