I have a variable $Search
and i want this query
$sel=$con->prepare("SELECT * FROM users WHERE Username LIKE '%{:src}%'");
$sel->bindValue(":src",$Search);
$sel->execute();
I wanted to know if it's safe for me to do this query without doing any filtration on user's input.