0

我正在使用下面的代码从 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>
4

1 回答 1

2

你错过了一个美元符号:

$thedate = mysql_result(results, $i, 'date');
                        ^-- HERE
于 2013-06-22T14:57:59.080 回答