本文介绍了我无法弄清楚如何制作一个mysql填充下拉菜单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 您好 我已经在这个下拉菜单上工作了一个小时......但似乎没有填充它。 我的代码如下: $ sql = SELECT kid FROM Kcode; $ result = $ db-> query($ sql); echo < select name ='kid'>; echo < option value =' 。 $ row [' kid']。 '>选择课程< / option>; while ($ row = mysql_fetch_array($ result)){ echo < option value ='。 $ row [' kid']。 '>。 $ row [' kid']。 < / option>; } echo < ; / select>; i知道我使用mysqli代码来获取 $ db - >查询但我无法将其计入 $行 ive我已经尝试了很长时间但仍然没有想出为什么我无法得到我想要的东西。 希望你能帮助我:-D 解决方案 sql = SELECT kid FROM Kcode; result = db-> query( hi thereive been working for an hour on this drop down menu... but it seems not to populate it.my code is a following:$sql = "SELECT kid FROM Kcode";$result = $db->query($sql); echo "<select name='kid'>";echo "<option value='" . $row['kid'] . "'>Choose class</option>";while ($row = mysql_fetch_array($result)) { echo "<option value='" . $row['kid'] . "'>" . $row['kid'] . "</option>";}echo "</select>";i know that i use a mysqli code for the $db->query but i cant figure it onto the $rowive tried for so long now and still havent figured out why im not able to get what i want.hope u can help me :-D 解决方案 sql = "SELECT kid FROM Kcode";result =db->query( 这篇关于我无法弄清楚如何制作一个mysql填充下拉菜单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-28 08:06