使用PHP代码在我的下拉列表中添加一个搜索框

时间:2017-04-25 14:51:28

标签: php

我想在下拉列表中添加一个搜索框,如下图所示: enter image description here

就像我想要与一个serch框和下拉列表结合起来。 这是我用来创建下拉列表的代码:

   <?php
    $servername = "localhost";
    $username = "root";
    $password = "";
    $conn = new mysqli($servername, $username, $password, "somapam_bd");

     $sql = mysqli_query($conn, "SELECT Nom FROM herboristes");

    while($ligne_liste=mysqli_fetch_array($sql)) {
        echo '<option value="'.$ligne_liste['Nom'].'">'.$ligne_liste['Nom']."</option>\n";
    }
    echo '</select>';
    ?>

谢谢:)

1 个答案:

答案 0 :(得分:0)

我发现一个解决方案是使用“选择的插件”用于wordpress但我有另一个问题是我在主菜单中有一个更多的下拉列表,所以我不知道我如何delet它。 这是JQuery代码:

jQuery(document).ready(function($) { $('select:not(#mo-fonts)').chosen({ width:"95%" });});
谢谢你!