<select>默认值
这个问题在这里已经有了答案:
你不要使用Types
函数的参数$x
,因为我猜想它是一个选定的值。 尝试用下面的代码替换你的功能:
function Types($x) {
global $mysqli;
$type = " SELECT type FROM types ";
if ($type_results = $mysqli->query($type)) {
while ($row = $type_results->fetch_assoc()) {
$selected = ($row["type"] == $x) ? 'selected="selected"' : '';
printf ("<option %s>%s</option>", $selected, $row["type"]);
}
$type_results->free();
}
}
当然还可以在您的html代码中为函数Types
提供选定的值。