Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
似乎我在从 MySql 表中填充下拉列表时遇到了麻烦。
与数据库的连接有效,我可以将数据写入表。我还可以在屏幕上的每个字段中显示数据。
我希望能够从此表中的列填充下拉列表。我已经搜索了这个论坛,但无法整合提出的一些想法。
我希望有人可能有这方面的知识。
在此先感谢,肯
不要写入表格,而是使用<select> <option..>组合来获得下拉菜单。
<select> <option..>
echo "<select name='something'>"; while( $row = mysql_fetch_array( $query_result ) ) { echo "<option value='$row[val]'>$row[data]</option>"; } echo "</select>";
当然,它可能会根据您的领域而改变。