gpt4 book ai didi

php - 从 d/base 填充下拉列表然后用于 ajax 检索

转载 作者:行者123 更新时间:2023-11-29 06:56:44 25 4
gpt4 key购买 nike

我有一个关于如何组合几个元素的查询:

  1. 一个标准的下拉选择框,用户可以在其中从来自 mysql 数据库表的名称列表中进行选择。

  2. 从该框中选择 - 一个 ajax 函数,它检索更多数据并显示在页面下方 div 中的 html 表格中。从下拉列表中选择新名称时 - 表格数据会刷新

我可以让两个元素单独工作但不能一起工作,即当我将名称分别写入 html 选择位时,javascript/ajax 可以工作,但是当我实现 PHP 以自动填充下拉列表时,其他数据不会完全拉入。

部分代码:

<head>
<?php
$con = mysql_connect("localhost","******","*******");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("*******", $con);

$sql="SELECT
People1.person_id,
People1.forename,
People1.surname,
People1.team_id
FROM People1
WHERE People1.team_id = 8";

$result=mysql_query($sql);
$options="";

while ($row=mysql_fetch_array($result)) {

$id=$row["person_id"];
$thing=$row["forename"];
$options.="<OPTION VALUE=\"$id\">".$thing;
}
?>

<script type="text/javascript">
function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","getuser.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>

<body>
<h1>Player Info</h1>
<form>
<SELECT NAME="player_id" "showUser(this.value)">
<OPTION VALUE="">Choose</OPTION>
<OPTION VALUE=<?=$options?>></OPTION>
</SELECT>
</form>
<br />

<div id="txtHint"><b>Person info will be listed here.</b></div>
</body>
</html>

在上面的所有内容中,我得到的下拉菜单几乎可以填充,但是选择名称并没有从 getuser.php 文件中带来任何东西。

最佳答案

您的 while 循环应该如下所示

while ($row=mysql_fetch_array($result)) { 

$id=$row["person_id"];
$thing=$row["forename"];
$options.="<OPTION VALUE=\"$id\">".$thing."</OPTION>";
}

你的select block 应该是下面的

<SELECT NAME="player_id" onchange="showUser(this.value)">
<OPTION VALUE="">Choose</OPTION>
<?=$options?>
</SELECT>

关于php - 从 d/base 填充下拉列表然后用于 ajax 检索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12290472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com