gpt4 book ai didi

php - 如何从数据库获取数据并使用 php 中的下拉列表将其显示到标签?

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

我想使用同样从数据库生成的下拉列表将从数据库检索的数据显示到我的输入区域中。问题是当运行我的代码时,客户名输入区域正在消失。你能帮我解决这些问题吗?

下拉菜单注意:我的下拉菜单正在运行,我刚刚将其包含在内。

<?php
$connect = mysqli_connect("localhost", "root", "", "xls_db");
?>
<select name="customercode" id="customercode" class="form-control">
<option value="" > -----------Customer Code----------- </option>
<?php
$dd_res=mysql_query("Select DISTINCT customercode from cr18_cust_listing WHERE Status = 'Active' ");
while($r=mysql_fetch_row($dd_res))
{
echo "<option value='$r[0]'> $r[0] </option>";
}
?>
</select>

PHP显示文本

<?php
$connect = mysqli_connect("localhost", "root", "", "xls_db");
if(isset($_POST["customercode"]))
{
if($_POST["customercode"] != '')
{
$sql = "SELECT * FROM cr18_cust_listing WHERE customercode = '".$_POST["customercode"]."'";
}
$result = mysqli_query($connect, $sql);

while($r = mysqli_fetch_array($result))
{


?>
<div class="form group has-feedback">
<input class="form-control" type="text" name="accntname" required="required" placeholder="Customer Name" value="<?php echo $r['customername'] ?>"><span class="glyphicon glyphicon-user form-control-feedback"></span><br />
</div>
<?php }
} ?>

缺少客户姓名输入区域

Screenshot

最佳答案

尝试下面的代码您已经关闭了文本区域而没有打开它。

<input class="form-control" name="accntname" required="required" placeholder="Customer Name" value="<?php echo $r['customername'] ?>"><span class="glyphicon glyphicon-user form-control-feedback"></span><br />

关于php - 如何从数据库获取数据并使用 php 中的下拉列表将其显示到标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53001160/

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