在这里,我使用 php 在我的下拉列表中填充数据库字段,我的代码如下,
while ($row = mysql_fetch_array($result)) {
$series1 .= "<option id='Series1' value='" . $row['Series'] ."'>" . $row['Series'] ." </option>";
}
获取后我将其回显到 html
<select id="Series1" onchange="changeVal('Series1')">
<option value="">Please select</option>
<?php echo $series1 ?>
</select>
我的问题是我在数据库字段中有一些空值,我不希望将其插入选项字段中。我的最终结果现在看起来像这样
请帮我。