Question: I have this condition in sql and php it searches things but when there is space or line break in search it will not return
I have this condition in sql and php it searches things but when there is space or line break in search it will not return anything can you assist what to change to search everything
$condition .= "question LIKE '%".mysqli_real_escape_string($connect, $text)."%' OR `picText` LIKE '%" . mysqli_real_escape_string($connect, $text) . "%'
OR ";
for example it can't search this
public class write{ int a = 10; }
but can search
public class write{ only
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
