我想使用搜索选项在另一个页面中查找内容。
我的 HTML 页面:
<form action="search.php" method="post">
<input name="search" type="text"/>
<input type="image" src="images/search-btn.jpg" alt="search-btn" />
</form>
我在另一个页面中有 5 个主题,例如“products.html”。主题标题是电影、音乐等。因此,如果键入关键字(如每个主题中的标题或某些预定义关键字)并单击搜索按钮,我想重定向到 products.php 页面。
主要的是我想把注意力集中在那个特定的话题上
现在我像这样重定向:
<?php
$val=$_POST['search'];
if($val=='Music'||$val=='singer')
{
header('Location:http://localhost/products.html');
}
?>