使用php搜索基金在html中进行多条件搜索

时间:2015-09-07 09:23:06

标签: php html

我是html和php的新手。只做了一个。但有问题...

所以我想在我的网站上创建搜索功能......

一个条件搜索对我来说很好。但我想用下拉框添加另一个条件(按IP地址,公司名称)

$search_criteria = "";
if( isset($_POST['button_search']) ) {
  $search_criteria = trim(strip_tags($_POST['search']));

  $companies = $controller->getCompaniesByIP($search_criteria);
<html>
<body>

 <form method="POST" action="">

              <input type="text" style="height:25.5px;color:#000000;padding-left:5px;" placeholder="" name="search" value="<?php echo $search_criteria; ?>">
              <button type="submit" name="  " class="btn btn-default btn-sm"><span class="glyphicon glyphicon-search"></span></button>
              <button type="submit" class="btn btn-default btn-sm" name="reset"><span class="glyphicon glyphicon-refresh"></span></button>

        </form>

<html>

请帮帮我

我正在使用一个条件搜索,如下所示。

0 个答案:

没有答案