I've at website building for a long time, but I'm terrible with php. I bought this script for displaying products from an affiliate program. It works fine except the search is never exact enough. For instance if I searched for "Superman Action Figures" I would get everything to do with Superman, action figures would be on page 10 or something like that. I can put it in quotes which pulls up the exact phrase, but I want the user to be able to get exactly what they put in the search box without having to add quotes plus the quotes throw off the pagination.
I've tried playing with this code below but I just can't get it. Any help would be greatly appreciated. I know just enough about php to be frustrated. I even took a class on it once, but still can't get it.
if($search){
$query_count = "SELECT * FROM products WHERE MATCH(Name) AGAINST('$search' IN BOOLEAN MODE) AND Price >= $minimum_price";