我正在使用下面的代码从 sql 查询返回的数组中取出每个单独的值。当页面运行时,下拉框将填充正确数量的空格。目前4。但是,这些空间中没有信息。下拉框仅由 4 个空格填充。有任何想法吗??
Date Selection:
<select name="dateselection">
<?php
$i = 0;
while ($i < $num)
{
$thedate = mysql_result(results, $i, 'date');
?>
<option> <?php echo $thedate; ?> </option>>
<?php
$i++;
}
?>
</select>