我不明白为什么这提供了数组中每个 id 的表单选项选项卡,而不仅仅是其中一个。有人可以解释一下吗?又名:为什么$id变量不是静态数字。谢谢!
<form action="form_connect.php" method="post">
<input type="text" name="username">
<input type="password" name="password">
<select name="id" id="">
<?php
while($row = mysqli_fetch_assoc($result)){
$id = $row['id'];
echo "<option value='$id'>$id</option>";
}
?>
</select>
<input type="submit" name="submit">
</form>
慕田峪7331174