dongweiben5229 2013-05-06 21:05
浏览 55
已采纳

如何通过从另一个下拉列表中选择值来填充下拉列表?

I have been trying to populate the contents of one drop down list with the selection of an item in another, using php,html and mysql database and Its proved to be a lot harder than i thought for me. I'm trying to get one dropdown list show names of all mobile phones based on company selections in the first drop down list.

The code i've provided below has no errors, but the 2nd dropdown list is not getting populated. the variable '$submittedValue' is not getting the right value and hence '$name' also has no content in it. I can't seem to be able to figure out a reason for this.

what i've done is, to try to use the selected option in the first drop down list, put that into a variable and pass that as a parameter to the 2nd query.

I solution to this would be greatly appreciated.

<?php

 $con=mysqli_connect("localhost","root","","dbmobiles");

 // Check connection
 if (mysqli_connect_errno($con)) {
    echo "Failed to connect to MySQL: " . mysqli_connect_error();
 }

 $options = '';
 $submittedValue = '';
 $name=" ";

 $q1=mysqli_query($con,"select distinct compName from umobile order by compName ASC");
 while($row = mysqli_fetch_array($q1)) {
    $options .="<option value=". $row['compName'] ." >" . $row['compName'] .    "</option>";
 }

 $menu1 = "<form id='filter' name='filter' method='post' action=' '>    
           <p><label>Select Company</label></p>
           <select name='filter' id='filter'>
           " . $options . "
           </select>
          </form>";

 if (isset($_POST["filter"])) {
    $submittedValue = $_POST["filter"];
 }
 echo $menu1;

 if ($q2=mysqli_prepare($con,"SELECT DISTINCT mobname FROM umobile WHERE compName=? "))
 {
    mysqli_stmt_bind_param($q2,"s",$submittedValue);
    $s=$submittedValue;
    mysqli_stmt_execute($q2);
    mysqli_stmt_bind_result($q2,$r);
 }  

 while(mysqli_stmt_fetch($q2)) {
    $name .="<option>".$r['mobname']."</option>";
 }

 echo ".$name.";
 $menu2 = "<form id='moblist' name='moblist' method='post' action=' '>
            <p><label>Select Mobile</label></p>
            <select name='moblist' id='moblist'>
            " . $name . "
            </select>
           </form>";

 echo $menu2;
?>
  • 写回答

2条回答 默认 最新

  • doushi3189 2013-05-06 21:59
    关注

    Don't forget to quote .$r['mobname'].

    $name .="<option value=\"".$r['mobname']."\" >".$r['mobname']."</option>";
    

    Your $_POST tests only .

    if (isset($_POST["filter"])) {
        $submittedValue = $_POST["filter"];
    }
    

    What about if $_POST["filter"] is NOT set ?
    Your code did not take care of this fact. He always runs through the section $menu2.

    Your $_POST is as the name implies, of a post. To evaluate a $_POST must be done a post.

     <input type="submit" name="Submit" value="Submit" />
    

    for example

     $menu1 = "<form id='filter' name='filter' method='post' action=' '>    
                 <p><label>Select Company</label></p>
                <select name='filter' id='filter'>
                 " . $options . "
                </select>
                <input type=\"submit\" name=\"Submit\" value=\"Send\" />
              </form>";
    

    Put all the logic for the second menu in your code if (isset($_POST["filter"])) {

     echo $menu1;
    
     if (isset($_POST["filter"])) {
        $submittedValue = $_POST["filter"];
          if ($q2= ....)
           {
             mysqli_stmt_bind_param($q2,"s",$submittedValue);
             $s=$submittedValue;
             mysqli_stmt_execute($q2);
             mysqli_stmt_bind_result($q2,$r);
    
             while(mysqli_stmt_fetch($q2)) {
             $name .="<option value=\"".$r['mobname']."\" >".$r['mobname']."</option>";
             }
    
             $menu2 = "<form id='moblist' name='moblist' method='post' action=' '>
                <p><label>Select Mobile</label></p>
                <select name='moblist' id='moblist'>
                " . $name . "
                </select>
               </form>";
    
            echo $menu2;
           }  
       }
    

    Update:

    You can not use $r['mobname'] with a bind.

    mysqli_stmt_bind_result($q2,$r);
    ....
    while(mysqli_stmt_fetch($q2)) {
    $name .="<option value=\"".$r['mobname']."\" >".$r['mobname']."</option>";
    

    }

    Use it like .

    mysqli_stmt_bind_result($q2,$r);
    ....
    while (mysqli_stmt_fetch($q2)) {
    $name .="<option value=\"".$r."\" >".$r."</option>";
    }
    
    
    mysqli_stmt_close($q2);
    

    Update 2

    you forget to quote that to

     $options .="<option value=". $row['compName'] ." >" . $row['compName'] .    "</option>";
    

    right

     $options .="<option value=\"". $row['compName'] ."\" >" . $row['compName'] .    "</option>";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请问如何在openpcdet上对KITTI数据集的测试集进行结果评估?
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路
  • ¥15 phython读取excel表格报错 ^7个 SyntaxError: invalid syntax 语句报错