我有两个搜索框,一个在顶部,一个在底部。 内容在中间,如果发现没有结果,我该如何删除其中一个? (下一个)
由于
我得到了以下表格:
<form class="form" name="search" method="_post" action="index.php"><br>
<input style="width:300px; height:28px; vertical-align:middle;" class="searchbox" type="text" name="q" value="<? print $info['keyword']; ?>"/>
<select name="type" style="height:28px; width:100px; font-size:18px; vertical-align:middle; margin-left:3px; margin-right:2px;"> <input type="submit" name="search" value="Search" style="width:80px; height:28px; font-size:16px; text-align:justify; vertical-align:middle;" /><br><br>
<input type="radio" name="stype" value="all" <? if(!isset($_GET['stype'])||$_GET['stype']=="all") print "checked";?> /> all files
<input type="radio" name="stype" value="checked" <? if(!isset($_GET['stype'])||$_GET['stype']=="checked") print "checked";?> /> checked files
答案 0 :(得分:1)
<?php if(count($results):?>
<form class="form" name="search" method="_post" action="index.php"><br>...
<?php endif;?>
这是对您提供的信息(无代码等)的最佳猜测