Можно. Допустим, в текстовый файл по одному слову на строку. Тогда так:CODE:$words = file("words.txt");
$good = false;
foreach ($words as $word)
if (strpos($_POST['text'], trim($word))!==FALSE)
{
$good=true;
break;
}
if (!$good)
{
header("location: error.htm");
exit();
} |