0

我的 find.php 文件中有这段代码:

<select name="EmpName" required="required" id='empn'>
    <option value="" style="display:none;"></option>    
    <?php

    //get the employee id 
        $employeeId = $_POST['country'];

    //make connection to database, bail if no connection
    $connection = odbc_pconnect('db','','');
    if (!$connection) { exit("Connection Failed: " . $connection); }

    //retrieve usernames and passwords
    $sql = "SELECT EName FROM LoginTable WHERE EmployeeID='$employeeId'";

    $rs = odbc_exec($connection, $sql);

    while(odbc_fetch_row($rs)) {
        $rowJobNum = odbc_result($rs, 'EName');
        printf("<option value='%s'>%s</option>", $rowJobNum, $rowJobNum);
    }

?></select>

我的 index.php 文件中有这段代码:

<script>
function getXMLHTTP() { //function 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 getCity(strURL) {      

    var req = getXMLHTTP();

    if (req) {

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

}
</script>




</head>

<body>

<form method="post" action="" name="form1">
<table width="60%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="150">Country</td>
    <td  width="150"><select name="country" onChange="getCity('find.php?country='+this.value)">
    <option value="">Select Country</option>
    <option value="1">mg05</option>
    <option value="2">Canada</option>
        </select></td>
  </tr>
  <tr style="">
    <td>City</td>
    <td ><div id="citydiv"><select name="city">
        </select></div></td>
  </tr>

</table>  
</form>
</body>
</html>

这是问题所在...我无法访问第一个下拉菜单中的选择,下拉菜单中的选择永远不会进入find.php. 作为参考,mg05下拉列表中是一个员工 ID,我正在处理一个最初为城市/州等格式化的示例。

这是我的大问题,如果我去:

$sql = "SELECT EName FROM LoginTable WHERE EmployeeID = '$employeeId'";

并将其更改为

$sql = "SELECT EName FROM LoginTable WHERE EmployeeID= 'mg05'";

它完美地工作,并返回正确的结果。所以......显然从 index.php 到 find.php 的数据发布不起作用,我不知道为什么。我有$_GET$_POST在我网站的其他区域工作,但不是这个。

关于我可能在哪里出错的任何见解?我试过同时使用get和post,但没有任何效果。

4

1 回答 1

1

问题是您希望选择中显示的文本被发布。如果所选选项具有 value 属性,则不会发生这种情况,将使用 value 属性

<select name="country" onChange="getCity('find.php?country='+this.value)">
    <option value="">Select Country</option>
    <option value="mg05">mg05</option>
    <option value="Canada">Canada</option>
</select>
于 2013-01-19T00:16:43.220 回答