允许选定的选项值显示在数据库

时间:2017-11-22 22:17:39

标签: php mysql database

我有多个表单从下拉列表中收集数据库中表的信息。这是我正在使用的代码,它工作正常。它在下拉列表中显示了适当的数据。

    <?php 
        $conn = new mysqli("localhost", "proj_user", "my*password", "lrobinson");
        $sql = mysqli_query($conn, "SELECT description FROM services");
            while ($row = $sql->fetch_assoc()){
            echo "<option value=\"service1\">" . $row['description'] . "
</option>";
        }
    ?>

还有另一个页面显示一个表格,该表格从上一页抓取数据及其下拉列表。而不是显示实际选择,例如&#34; PHP辅导&#34;,它总是说&#34; service1&#34;。

如何在下拉列表中显示实际选择,而不是总是说&#34; service1&#34;?

对于这样一个模糊的问题感到抱歉,但如果没有截图,很难解释。我会发布任何其他数据来帮助回答这个问题。

编辑* 第一个屏幕截图显示了我希望在表格中显示的正确选项的下拉菜单。第二个屏幕截图显示了从那些包含不正确信息的下拉框收集的信息。 This shows the drop downs with the proper choices

This is what shows on the new page with the incorrect data.

0 个答案:

没有答案