I have the following snippet of code:
how would i make it so its
thanks
Code:
$query = "select * from offers where name like \"%$trimmed%\" order by name"; // EDIT HERE and specify your table and field names for the SQL query
Code:
where name like \"%$trimmed%\" AND country like \"%us%\"
Comment