我想通过在我的文本字段中插入一个单词来搜索整个新闻提要。我不知道该怎么做。这是我的代码,所以你知道我的意思。
<form action="search.php" method="get">
<tr><th>search: </th><td><input type="text" name="search" value="{$word}"></td></tr>
</form>
如何检查我在搜索栏中插入的单词是否存在于新闻提要中的某处?
我的新闻提要是这样使用的:
$xml=simplexml_load_file("newsfeed.xml");
foreach($xml->channel->item as $item) {
echo '<h1 class="title">' . $item->title . '</h1>';
echo '<p class="desc">'.$item->description."</p>";
}