<?
$checkfor = array("football", "ball", "phone");
$keepcount = 0;
foreach($checkfor as $value) {
$title = substr_count(strtoupper($row['title']), strtoupper($value));
$keepcount = $title+$keepcount;
}
if($keepcount <= 0) {
//Show the stuff
echo "Heres Your Non-Football or ball or phone Results!";
} else {
//Don't Show The Stuff
echo "Heres Your Crappy Football or ball or phone...";
}
?>