AJAX สามารถใช้สำหรับการสื่อสารเชิงโต้ตอบกับฐานข้อมูล
ตัวอย่างต่อไปนี้จะสาธิตวิธีการดึงข้อมูลหน้าเว็บ ข้อมูลจากฐานข้อมูลด้วย AJAX:
ลองด้วยตัวคุณเอง →
<!DOCTYPE html>
<html>
<style>
th,td {
padding: 5px;
}
</style>
<body>
<h2>The XMLHttpRequest Object</h2>
<form action="">
<select name="customers" onchange="showCustomer(this.value)">
<option value="">Select a customer:</option>
<option value="ALFKI">Alfreds Futterkiste</option>
<option value="NORTS ">North/South</option>
<option value="WOLZA">Wolski Zajazd</option>
</select>
</form>
<br>
<div id="txtHint">Customer info will be listed here...</div>
<script>
function showCustomer(str) {
if (str == "") {
document.getElementById("txtHint").innerHTML = "";
return;
}
const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
document.getElementById("txtHint").innerHTML = this.responseText;
}
xhttp.open("GET", "getcustomer.php?q="+str);
xhttp.send();
}
</script>
</body>
</html>
เมื่อผู้ใช้เลือกลูกค้าในรายการดรอปดาวน์ด้านบน ฟังก์ชันที่เรียกว่า showCustomer()
จะถูกดำเนินการ ที่ ฟังก์ชั่นถูกทริกเกอร์โดยเหตุการณ์ onchange
:
function showCustomer(str) {
if (str == "") {
document.getElementById("txtHint").innerHTML = "";
return;
}
const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
document.getElementById("txtHint").innerHTML = this.responseText;
}
xhttp.open("GET", "getcustomer.php?q="+str);
xhttp.send();
}
ฟังก์ชัน showCustomer()
ทำสิ่งต่อไปนี้:
ตรวจสอบว่าลูกค้าได้รับเลือกหรือไม่
สร้างวัตถุ XMLHttpRequest
สร้างฟังก์ชันที่จะดำเนินการเมื่อการตอบสนองของเซิร์ฟเวอร์พร้อม
ส่งคำขอไปยังไฟล์บนเซิร์ฟเวอร์
ขอให้สังเกตว่ามีการเพิ่มพารามิเตอร์ (q) ไปยัง URL (พร้อมกับเนื้อหาของรายการแบบเลื่อนลง)
หน้าบนเซิร์ฟเวอร์ที่เรียกใช้โดย JavaScript ด้านบนเป็นไฟล์ PHP ชื่อ "getcustomer.php"
ซอร์สโค้ดใน "getcustomer.php" เรียกใช้แบบสอบถามกับฐานข้อมูล และส่งกลับผลลัพธ์ในรูปแบบ HTML โต๊ะ:
<?php
$mysqli = new mysqli("servername", "username",
"password", "dbname");
if($mysqli->connect_error) {
exit('Could not connect');
}
$sql = "SELECT customerid, companyname,
contactname, address, city, postalcode, country
FROM customers WHERE
customerid = ?";
$stmt = $mysqli->prepare($sql);
$stmt->bind_param("s", $_GET['q']);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($cid,
$cname, $name, $adr, $city, $pcode, $country);
$stmt->fetch();
$stmt->close();
echo "<table>";
echo "<tr>";
echo "<th>CustomerID</th>";
echo
"<td>" . $cid . "</td>";
echo "<th>CompanyName</th>";
echo "<td>" . $cname
. "</td>";
echo "<th>ContactName</th>";
echo "<td>" . $name . "</td>";
echo "<th>Address</th>";
echo "<td>" .
$adr . "</td>";
echo "<th>City</th>";
echo "<td>" . $city . "</td>";
echo "<th>PostalCode</th>";
echo "<td>" .
$pcode . "</td>";
echo "<th>Country</th>";
echo "<td>" . $country .
"</td>";
echo "</tr>";
echo "</table>";
?>