gpt4 book ai didi

php - 从数据库填充下拉菜单时出错

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

我正在尝试使用 mysl db 中的数据自动填充下拉菜单。下拉列表应显示类型 inactiveactive 供用户选择。下面是 php 端的表结构和 sql 查询。下拉列表根本不显示任何值。

CREATE TABLE academy
(
academy_id int(11) not null auto_increment,
name varchar(25) not null,
type enum('INACTIVE','ACTIVE') DEFAULT 'ACTIVE' NOT NULL,
primary key (id),
);

php

Type: <select name="select_type">
<?php
$mysqli = new mysqli(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_DATABASE);

if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}

$dropDownQuery = "SELECT type FROM academy";

if ($result = $mysqli->query($dropDownQuery)) {
while ($row = $result->fetch_row()) {
$type = $row['type'];
echo "<option value=\"$type\">$type</option>";
}
}
?>
</select>

最佳答案

$type 未在您的代码中定义。

$partner 替换为 $type

 $type = $row['type'];

echo "<option value=\"$type\">$type</option>";

关于php - 从数据库填充下拉菜单时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19872816/

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