gpt4 book ai didi

javascript - 下拉值仅将数据存储到空间

转载 作者:行者123 更新时间:2023-12-02 15:02:22 26 4
gpt4 key购买 nike

我的表单中有两个下拉菜单。1)汽车品牌名称2) 型号名称,其中数据将根据所选品牌名称从数据库中检索。所以我采用了 div 标签并附加了第二个下拉列表。下拉列表中的数据显示正确,但问题在于存储从第二个下拉列表中选择的数据,它仅将模型名称存储到数据库中的空间。长度场也采取得当。例如-如果型号名称是“系列 1”,那么它将仅存储系列。

第二个下拉列表的 PHP 页面:

<?php

$brand = $_GET['brand'];
include('connection.php');
$sql = "select * from modelname where Brand_Name='" . $brand . "'";

$result = mysqli_query($conn, $sql);
$html = "";
$html = '<select name="model">';
while ($row = mysqli_fetch_assoc($result)) {
$html.='<option value=' . $row['M_Name'] . '>' . $row['M_Name'] . '</option>';
}
$html.='</select>';
echo $html;
?>

最佳答案

因为你没有引用你的属性。

value=hello world

被视为

value="hello" world

添加缺少的引号。

关于javascript - 下拉值仅将数据存储到空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35340531/

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