从数据库中获取一部分表并在网站上显示



我想从名为" tkacont"的数据库中获取一部分。

用户单击执行tkakata()函数的按钮时,我将抓取firstName,lastName和kata(点),然后将它们显示在表中。

我显示了与ID displayrank<div>中从最高点到最低点排序的表。

这是代码:

kataajax.js

function tkakata(){
var xmlHttp = createXmlHttpRequestObject();
function createXmlHttpRequestObject()
{
    var xmlHttp;
    if (window.XMLHttpRequest) 
    {
        // code for IE7+, Firefox, Chrome, Opera, Safari
        xmlHttp = new XMLHttpRequest();
    } 
    else {
            // code for IE6, IE5
            xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
    if(!xmlHttp)
        alert("Something went wrong")
    else
        return xmlHttp
}
function process(){
    if(xmlHttp.readyState==0 || xmlHttp.readyState==4)
        {
            xmlHttp.open("GET", "tkakatagrab.php", true)
            xmlHttp.onreadystatechange = handleServerResponse;
            xmlHttp.send(null);
        }
    else
        {
            setTimeout('process()',1000);
        }
}
function handleServerResponse()
{
    if(xmlHttp.readyState==4)
    {
        if(xmlHttp.status==200)
        {
            xmlResponse = xmlHttp.responseXML;
            xmlDocumentElement = xmlResponse.documentElement;
            message = xmlDocumentElement.firstChild.data;
            document.getElementById("displayrank").innerHTML = message;
            setTimeout('process()',1000);
        }
        else
        {
            alert("Database not connecting!")    
        }
    }
}}

tkakatagrab.php

<?php
header('Content-Type: text/xml');
echo '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>';
$con = mysqli_connect('MY_SERVER_IP','USERNAME','PASSWORD','TKACONT');
if(!$con){
die('Could not connect: ' . mysqli_error($con));
}
$sql="SELECT Firstname,Lastname,Kata FROM Contestant ORDER BY Kata DESC";
$result = mysqli_query($con,$sql);
echo '<response>';
echo "<table>
<tr>
<th>Points</th>
<th>Firstname</th>
<th>Lastname</th>";
//while loop right here
while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['Kata'] .  "</td>";
echo "<td>" . $row['Firstname'] . "</td>";
echo "<td>" . $row['Lastname'] .  "</td>";
echo "</tr>";
}
echo "</table>";
echo '</response>';
mysqli_close($con);
?>

查询的这一部分:

ORDER BY Kata DESC

订购结果从最高到最低(即:下降),如果您想要反向顺序(最低至最高),将降价更改为ASC(上升)。

希望这会有所帮助:)

最新更新