Hi,
I have the following code to search the DB:
$query_count = "select * from ".$prefix."store_inventory where (description like '%$search%' or title like '%$search%')";
This is caled from a simple form there the textbox is caled search.
Does anybody know how I can make it work with search functions like:
red AND hat
green OR yellow??
Any ideas?