在html select中保留默认选项值为空

时间:2017-10-05 09:33:45

标签: html html-select default-value

我有一个html选择,使用foreach循环从查询中填充DATA。它看起来像这样

$client = $wpdb->get_results("SELECT string FROM `file` WHERE 
`code` = 002 AND `status` = 2");

echo 'Filter by client: ';
  echo '<select name="client_list">';
  foreach ($client as $key => $row) {
    $value = $row->string;
    echo 
  '<option value='.$value.'>'
  .$value. '</option>';
  }
  $client = $_GET['client_list'];
  echo '</select>';

它用作基于所选选项值显示数据的过滤器。它过滤的表看起来像这样

   |client  | file              | 
   |------  |-------------------|
   |client1 | file00000         |
   |client2 | file00002         |

现在我想将html的第一个选项值(默认值)设为空。我该怎么做?

2 个答案:

答案 0 :(得分:0)

首先添加一个空选项:

echo '<select name="client_list"><option value=""></option>';

如果client_list为空,则提交时您知道有人没有选择任何内容。

答案 1 :(得分:0)

你可以用这个

      $client = $wpdb->get_results("SELECT string FROM `file` WHERE 
     `code` = 002 AND `status` = 2");

    echo 'Filter by client: ';
    echo '<select name="client_list"><option value=""></option>';
    foreach ($client as $key => $row) {
        $value = $row->string;
        echo 
       '<option value='.$value.'>'
        .$value. '</option>';
    }
    $client = $_GET['client_list'];
    echo '</select>';