$keyword = $_POST['searchKeywords'];
$query = mysqli_query($con, "SELECT * FROM movie WHERE title LIKE '%$keyword%' LIMIT 5");
I'm getting $keyword from the input field via POST request.And I have to type the accurate title like 'The Order' with the same case sensitive So I should type the exact way it is.Is there any way to type with any case sensitive I want like 'the order' and get the result.I will appreciate your help thanks.