ค้นหาข้อมูล Ajax

ตัวอย่างโค้ด PHP การค้นหาข้อมูลใน Database โดยใช้ AJAX


ตัวอย่าง ข้อมูลใน Mysql  ฐานข้อมูลชื่อ "demo_ajax"
idFirstNameLastNameAgeHometownJob
1 Peter Griffin 41 Quahog Brewery
2 Lois Griffin 40 Newport Piano Teacher
3 Joseph Swanson 39 Quahog Police Officer
4 Glenn Quagmire 41 Quahog Pilot
ตัวอย่างโค้ด HTML : find-database.html

<html>
<head>
<script type="text/javascript">
function showUser(str)
{
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
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("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","getuser.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>

<form>
<select name="users" onchange="showUser(this.value)">
<option value="">เลือกชื่อคน:</option>
<option value="1">Peter Griffin</option>
<option value="2">Lois Griffin</option>
<option value="3">Glenn Quagmire</option>
<option value="4">Joseph Swanson</option>
</select>
</form>
<br />
<div id="txtHint"><b>ข้อมูลของบุคคลที่เลือกไว้จะแสดงข้างล่างนี้</b></div>

</body>
</html>

ตัวอย่างไฟล์ PHP : getuser.php

<?php
$q=$_GET["q"];

$con = mysql_connect('localhost', 'peter', 'abc123');
if (!$con)
{
die('ไม่สามารถติดต่อฐานข้อมูล: ' . mysql_error());
}

// ส่งพารามิเตอร์ ชื่อฐานข้อมูล และหมายเลขการเชื่อมต่อฐานข้อมูล
mysql_select_db("demo_ajax", $con);  

$sql="SELECT * FROM user WHERE id = '".$q."'";

$result = mysql_query($sql);

echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
<th>Hometown</th>
<th>Job</th>
</tr>";

while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['FirstName'] . "</td>";
echo "<td>" . $row['LastName'] . "</td>";
echo "<td>" . $row['Age'] . "</td>";
echo "<td>" . $row['Hometown'] . "</td>";
echo "<td>" . $row['Job'] . "</td>";
echo "</tr>";
}
echo "</table>";

mysql_close($con);
?>

/*แหล่งที่มา http://www.ban-goi.com/php/163-php-find-data-database-mysql-ajax.html*/