AJAX โพล
ตัวอย่างต่อไปนี้จะแสดงให้เห็นการสำรวจความคิดเห็นที่ผลจะแสดงให้เห็นโดยไม่ต้องโหลด
คุณชอบ PHP และ AJAX เพื่อให้ห่างไกล?
ตัวอย่างอธิบาย - หน้า HTML
เมื่อผู้ใช้เลือกตัวเลือกข้างต้นฟังก์ชั่นที่เรียกว่า " getVote() " จะถูกดำเนินการ ฟังก์ชั่นจะถูกเรียกโดย "onclick" เหตุการณ์:
<html>
<head>
<script>
function getVote(int)
{
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("poll").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","poll_vote.php?vote="+int,true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="poll">
<h3>Do you like PHP and AJAX so far?</h3>
<form>
Yes:
<input type="radio" name="vote"
value="0" onclick="getVote(this.value)">
<br>No:
<input type="radio" name="vote"
value="1" onclick="getVote(this.value)">
</form>
</div>
</body>
</html>
getVote() ฟังก์ชั่นไม่ต่อไปนี้:
- สร้างวัตถุ XMLHttpRequest
- สร้างฟังก์ชั่นที่จะดำเนินการเมื่อตอบกลับของเซิร์ฟเวอร์ที่มีความพร้อม
- ส่งคำขอร้องออกไปยังแฟ้มบนเซิร์ฟเวอร์
- ขอให้สังเกตว่าพารามิเตอร์ (vote) จะถูกเพิ่ม URL (มีค่าใช่หรือตัวเลือกไม่มี)
PHP การไฟล์
หน้าบนเซิร์ฟเวอร์เรียกโดย JavaScript ข้างต้นเป็นไฟล์ PHP ที่เรียกว่า "poll_vote.php" :
<?php
$vote = $_REQUEST['vote'];
//get content of textfile
$filename = "poll_result.txt";
$content = file($filename);
//put content in array
$array = explode("||", $content[0]);
$yes = $array[0];
$no = $array[1];
if ($vote == 0) {
$yes = $yes + 1;
}
if ($vote == 1) {
$no = $no + 1;
}
//insert votes to txt file
$insertvote = $yes."||".$no;
$fp = fopen($filename,"w");
fputs($fp,$insertvote);
fclose($fp);
?>
<h2>Result:</h2>
<table>
<tr>
<td>Yes:</td>
<td>
<img src="poll.gif"
width='<?php echo(100*round($yes/($no+$yes),2)); ?>'
height='20'>
<?php echo(100*round($yes/($no+$yes),2)); ?>%
</td>
</tr>
<tr>
<td>No:</td>
<td>
<img src="poll.gif"
width='<?php echo(100*round($no/($no+$yes),2)); ?>'
height='20'>
<?php echo(100*round($no/($no+$yes),2)); ?>%
</td>
</tr>
</table>
ค่าจะถูกส่งมาจาก JavaScript และต่อไปนี้เกิดขึ้น:
- ได้รับเนื้อหาของ "poll_result.txt" ไฟล์
- ใส่เนื้อหาของแฟ้มในตัวแปรและเพิ่มอีกหนึ่งตัวแปรที่เลือก
- เขียนผลไปยัง "poll_result.txt" ไฟล์
- เอาท์พุทการแสดงกราฟิกของผลการสำรวจความคิดเห็น
ไฟล์ข้อความ
แฟ้มข้อความ (poll_result.txt) เป็นที่ที่เราเก็บข้อมูลจากการสำรวจความคิดเห็น
จะถูกเก็บไว้เช่นนี้
0||0
หมายเลขแรกหมายถึง "Yes" โหวต, ตัวเลขที่สองหมายถึง "No" โหวต
Note: อย่าลืมที่จะอนุญาตให้เว็บเซิร์ฟเวอร์ของคุณเพื่อแก้ไขไฟล์ข้อความ อย่า NOT ให้เข้าถึงทุกคนเพียงแค่เว็บเซิร์ฟเวอร์ (PHP)