In PHP itself, you may want to look at the strpos() function...
$mystring = "This is the description of the product. This may work for you.";
$findme = "snapple";
if (strpos($mystring, $findme)) {
echo "Yep, '".$findme."' is in the text.";
} else {
echo "Nope, '".$findme."' isn't there.";
}
$findme = "work";
if (strpos($mystring, $findme)) {
echo "Yep, '".$findme."' is in the text.";
} else {
echo "Nope, '".$findme."' isn't there.";
}
This is using predefined variables, but can easily be modded to work with a results set from a MySQL query or an array.