php下拉列表带搜索,如何在PHP上用输入搜索下拉列表

希望一切都会好起来。我面对这个问题谁都能帮我。

我使用from jQuery从bootstrap dropdown获取值以供输入。

class="form-inline active-purple-3 active-purple-4" style="width:400px;

margin-top:-50px; margin-left:125px; ">

data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"

style="margin-top:20px; margin-left:-140px;">Search By

id="in" type="text" placeholder="Search" style=" margin-top:15px; border-

radius:5px 5px 5px 5px;" aria-label="Search">

style="margin-left:365px; margin-top:-55px;">Search

$(document).ready(function(){

$('#dm a').on('click', function(){

$('#sb').text($(this).text());

});

});

$(function(){

//Listen for a click on any of the dropdown items

$("#dm a").click(function(){

//Get the value

var value = $(this).text();

//Put the retrieved value into the hidden input

$("input[name='thenumbers']").val(value);

});

});

include "Config.php";

if(isset($_POST['searchrec']))

{

$txtSearch=$_POST['txtSearch'];

$column=$_POST['thenumbers'];

if($column == "BY ID")

{

$query1="SELECT * FROM ourteam WHERE id LIKE '%$txtSearch%'";

$result1=mysqli_query($db,$query1);

$count=mysqli_num_rows($result1);

if($count == 0)

{

}else{

while($rowr=mysqli_fetch_array($result1))

{

$id=$rowr['id'];

$name=$rowr['name'];

echo "";

}

}

这段PHP代码只用于ID,我还将elesif语句用于其他实体。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值