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:請記住,讓你的Web服務器來編輯文本文件。 千萬NOT給任何人訪問,只是web服務器(PHP)