hi all im using this:
$result = mysql_query("select *
from product
where product_name like '$catsearch%'
order by product_name");
to search for a wild card, in my table the product name is made up of two names, e.g wall paper
now if i search for paper it wont be displayed in my results table, what is the wildcard code that will get php to look at all the names in the database field?