gpt4 book ai didi

php - 使用mysql数据库以php形式自动选择下拉列表

转载 作者:行者123 更新时间:2023-11-29 10:01:15 27 4
gpt4 key购买 nike

我在 php 表单中设置自动下拉菜单时遇到问题。

选择QC类型时,应自动从MySQL数据库中选择QC代码。目前,我正在手动选择它。谁能帮忙。

php 表单:

enter image description here

<tr>
<td align="right"><b>QC Code</b></td>
<td>
<select name="qc_code" >
<option>Select a QC Code</option>

<?php
$get_qc = "select * from qctype";

$run_qc = mysqli_query($con, $get_qc);

while ($row_qctype=mysqli_fetch_array($run_qc)){


$qccode_title = $row_qctype['qccode_title'];

echo "<option value='$qccode_title'>$qccode_title</option>";


}

数据库:-

enter image description here

最佳答案

您应该将标题放入中。这样标题将被显示并且值将被提交。

$qccode_title = $row_qctype['qccode_title'];
$qctype_title = $row_qctype['qctype_title'];
echo "<option value='$qctype_title'>$qccode_title</option>";

关于php - 使用mysql数据库以php形式自动选择下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52907369/

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