我在 php 中有一个 Edit 表单,一切都很好。我唯一的问题是当我单击“编辑”时,它会返回除“选择”下拉列表之外的所有数据。它没有选择的类别,它总是显示列表中的第一个值。但是我可以单击下拉菜单并选择一个新类别,然后它就可以工作了。
//Query the category table
$resultSet = $con->query("SELECT * FROM schedule_category");
<select id="schedule_category" name="schedule_category" class="custom-select">
<?php
while($rows = mysqli_fetch_assoc($resultSet))
{
?>
<option value = "<?php echo($rows['schedule_category'])?>">
<?php echo($rows['schedule_category']) ?>
</option>
<?php
}
?>
</select>
I would like to have it show the correct select option record not the first one in the drop down list. Here is an image of what happens https://imgur.com/a/XVXQ2Sa
达令说