Php-ajax数据库信息获取没有从batabase返回任何信息


Php ajax database info fetch returning nothing from batabase

我正在使用ajax为我的数据库获取信息,我遇到了一个问题。没有任何回报。

我有一个选择列表,它调用js脚本来运行onchange,它调用php文件来获取数据库信息并将其返回到表中。

问题是,在onchange事件中,我有一个表显示,只有表头,但没有下面的信息。我检查了控制台,得到的错误是:

得到http://lineofcode.com/favicon.ico401(未经授权)

这是唯一的错误。我做错了什么?为什么我的桌子一片空白?

html

<p>Please select a team name from the list to view table</p>
<form>
    <select name="users" onchange="showTeam(this.value)">
        <option value="">Select a team:</option>
        <option value="1">bobcats</option>
        <option value="2">rangers</option>
        <option value="3">hawks</option>
        <option value="4">rockets</option>
    </select>
</form>
<br>
<div id="teamInfo"><b></b></div>

JS脚本

// script for onchange event 
    function showTeam(str) {
        if (str == "") {
            document.getElementById("teamInfo").innerHTML = "";
            return;
        } else { 
            if (window.XMLHttpRequest) {
                // code for IE7+, Firefox, Chrome, Opera, Safari
                xmlhttp = new XMLHttpRequest();
            } else {
                // code for IE6, IE5
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            xmlhttp.onreadystatechange = function() {
                if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                    document.getElementById("teamInfo").innerHTML = xmlhttp.responseText;
                }
            };
            xmlhttp.open("GET","phpfiles/getTeam.php?q="+str,true);
            xmlhttp.send();
        }
    }

php文件

<!DOCTYPE html>
<html>
    <head>
        <style>
        table {
            width: 100%;
            border-collapse: collapse;
        }
        table, td, th {
            border: 1px solid black;
            padding: 5px;
        }
        th {text-align: left;}
        </style>
    </head>
<body>
<?php
    $q = intval($_GET['q']);
    $con = mysqli_connect('localhost','....','.....','....');
    if (!$con) {
        die('Could not connect: ' . mysqli_error($con));
    }
    mysqli_select_db($con,"ajax_demo");
    $sql="SELECT * FROM teams WHERE teamname = '".$q."'";
    $result = mysqli_query($con,$sql);
    echo "<table>
    <tr>
    <th>teamname</th>
    <th>city</th>
    <th>bestplayer</th>
    <th>yearformed</th>
    <th>website</th>
    </tr>";
    while($row = mysqli_fetch_array($result)) {
        echo "<tr>";
        echo "<td>" . $row['teamname'] . "</td>";
        echo "<td>" . $row['city'] . "</td>";
        echo "<td>" . $row['bestplayer'] . "</td>";
        echo "<td>" . $row['yearformed'] . "</td>";
        echo "<td>" . $row['website'] . "</td>";
        echo "</tr>";
    }
    echo "</table>";
    mysqli_close($con);
?>

只是一个观察,但代码不应该是这样的吗?

        xmlhttp.open("GET","phpfiles/getTeam.php?q="+str,true);
        xmlhttp.send();
        xmlhttp.onreadystatechange = function() {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                document.getElementById("teamInfo").innerHTML = xmlhttp.responseText;
            }
        };

同时尝试打印_r($_GET),查看是否正在发布值

不确定这是否是的问题,但您正在使用intval(),例如将输入字符串转换为整数,并且数据库中的团队名称与此不匹配(假设您提供了团队名称而不是数字)。