组合框列表无法显示数据库

时间:2017-09-08 08:55:55

标签: javascript php mysql ajax

每当我在承包商列中选择某些东西时,我正在开发一个组合框(根据链接中的附件),车辆组合框将根据承包商选择从数据库中检索信息。

面临的问题:
车辆组合框无法根据承包商的选择显示数据。

关于界面设计的插图:

illustration about the interface design

我已经附加在代码的第一部分,这是我的HTML表格代码。

<td>
    <select class="form-control" name='opt_contractor[]' id='opt_contractor' onChange="getState(this.value);" <?php if ($view==1) {?> disabled <?php }?> >
    <option>-- Select One --</option>
    <?php 
    foreach ($get_contractor as $contractor ){
    ?>
    <option value='<?php echo $contractor->ref_id;?>'<?php if($contractor->ref_id == $reqtype){echo ' selected';}?>><?php echo $contractor->ref_desc;?>
    </option>
    <?php } ?>
    </select>
</td>
<td>
    <select class="form-control" name="opt_vehicle[]" id="opt_vehicle" >
    <option value="">-- Select Vehicle --</option>
    </select>
</td>

脚本

function getXMLHTTP() { //fuction to return the xml http object
    var xmlhttp=false;  
    try{
        xmlhttp=new XMLHttpRequest();
    }
    catch(e)    {       
        try{            
            xmlhttp= new ActiveXObject("Microsoft.XMLHTTP");
        }
        catch(e){
            try{
            xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
            }
            catch(e1){
                xmlhttp=false;
            }
        }
    }

    return xmlhttp;
}


function getState(countryId)
{
   var strURL="refresh.php?country="+countryId;
   var req = getXMLHTTP();
   if (req)
   {
      req.onreadystatechange = function()
      {
        if (req.readyState == 4)
        {
        // only if "OK"
        if (req.status == 200)
        {
          document.getElementById('opt_vehicle').innerHTML=req.responseText;
        } else {
          alert("There was a problem while using XMLHTTP:\n" + req.statusText);
        }
        }
      }
      req.open("GET", strURL, true);
      req.send(null);
   }
}

PHP代码

$query ="SELECT ref_id, ref_desc FROM ref_mst WHERE ref_val5 = '" . $country . "'";
$result = $db->query($query);

?>
<select name="opt_vehicle" >
<option>Select State</option>
<?php while($row=mysqli_fetch_assoc($result)) { ?>
<option value=<?php echo $row['ref_id'] ?> ><?php echo $row['ref_desc'] ?>
</option>
<?php } ?>
</select>

对于这部分(参考php代码),我已经多次尝试解决问题,我也在下面附上了这个问题。

1. <?php while($row=mysqli_fetch_assoc($result)) { ?>
2. <?php while($row=mysqli_fetch_array($result)) { ?>
3. <?php while($row=mysqli_fetch_object($result)) { ?>

有关错误的说明: enter image description here

2 个答案:

答案 0 :(得分:1)

刚看过您的PHP代码

我认为您的PHP代码中存在问题请将其替换为下面的代码

    <?php
//re updated the query code instead , now used the AND and markers
    $query ="SELECT `ref_id` AND `ref_desc` FROM `ref_mst` WHERE `ref_val5` = '.$country.'";
    $result = $db->query($query);
    ?>
    <select name="opt_vehicle" >
    <option>Select State</option>
    <?php while($row=mysqli_fetch_assoc($result)) { ?>
    <?php
        foreach ($row as $key => $value) {
            echo $value;
            echo $tableRow[$key];
        }
    ?>
    <option value="<?php echo $tableRow['ref_id']; ?>"><?php echo $tableRow['ref_desc']; ?></option>
    <?php } ?>
    </select>

调试你的自我 我是Echo&#39;

echo $value;

我认为报价有问题..所以试一试并更新我..谢谢..

并请尝试在您的正常代码中使用PDO准备语句或Mysqli Prepared语句您正在使用直接查询到数据库。

答案 1 :(得分:1)

我已经解决了我的问题,而不是使用

<?php while($row=mysqli_fetch_assoc($result)) { ?>

我使用了这种方法

$results = $db->get_results($query);
<?php
foreach($results as $vhc) {
 ?>
<option value='<?php echo $vhc->ref_id;?>'><?php echo $vhc->ref_desc; ?> </option>

我已经修改了我为解决我的问题而修改的代码。

if(!empty($contract)) {
$query = "SELECT ref_id, ref_desc FROM ref_mst WHERE ref_val5 = '" .$contract. "'";
$results = $db->get_results($query);
?>
<select name="opt_vehicle" >
<option value="">Select Vehicle ....</option>
<?php
foreach($results as $vhc) {
 ?>
<option value='<?php echo $vhc->ref_id;?>'><?php echo $vhc->ref_desc; ?> </option>
<?php
} ?>
<select>
<?php }

再次感谢Ajmal Praveen的帮助。