suppose I have a LIKE
sql statement stored in a variable like this:
$movie_title = $_POST['movie_title'];
$query= "SELECT movie FROM movies WHERE title LIKE '%" . $movie_title . "%'";
What instance of an sql injection attack would I prevent by escaping the wildcards %
and _
?