PHP 和 AJAX 投票-6.9PHP和AJAX

閱讀 ?·? 發(fā)布日期 2019-06-29 08:34 ?·? admin

AJAX 投票

在這個(gè) AJAX 實(shí)例中,我們將演示一個(gè)投票程序,網(wǎng)頁(yè)在不重新加載的情況下,就可以獲得結(jié)果。

到目前為止,您喜歡 PHP 和 AJXA 嗎?

Yes:  
No: 

本例包括四個(gè)元素:

  • HTML 表單
  • JavaScript
  • PHP 頁(yè)面
  • 存放結(jié)果的文本文件

HTML 表單

這是 HTML 頁(yè)面。它包含一個(gè)簡(jiǎn)單的 HTML 表單,以及一個(gè)與 JavaScript 文件的連接:

<html>
<head>
<script src="poll.js"></script> 
</head>
<body>

<div id="poll">
<h2>Do you like PHP and AJAX so far?</h2>

<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>

例子解釋 - HTML 表單

正如您看到的,上面的 HTML 頁(yè)面包含一個(gè)簡(jiǎn)單的 HTML 表單,其中的 <div> 元素帶有兩個(gè)單選按鈕。

表單這樣工作:

  • 當(dāng)用戶(hù)選擇 "yes" 或 "no" 時(shí),會(huì)觸發(fā)一個(gè)事件
  • 當(dāng)事件觸發(fā)時(shí),執(zhí)行 getVote() 函數(shù)
  • 圍繞該表單的是名為 "poll" 的 <div>。當(dāng)數(shù)據(jù)從 getVote() 函數(shù)返回時(shí),返回的數(shù)據(jù)會(huì)替代該表單。

文本文件

文本文件 (poll_result.txt) 中存儲(chǔ)來(lái)自投票程序的數(shù)據(jù)。

它類(lèi)似這樣:

0||0

第一個(gè)數(shù)字表示 "Yes" 投票,第二個(gè)數(shù)字表示 "No" 投票。

注釋?zhuān)河浀弥辉试S您的 web 服務(wù)器來(lái)編輯該文本文件。不要讓其他人獲得訪(fǎng)問(wèn)權(quán),除了 web 服務(wù)器 (PHP)。

JavaScript

JavaScript 代碼存儲(chǔ)在 "poll.js" 中,并于 HTML 文檔相連接:

var xmlHttp

function getVote(int)
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 } 
var url="poll_vote.php"
url=url+"?vote="+int
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange=stateChanged 
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
} 

function stateChanged() 
{ 
 if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 { 
 document.getElementById("poll").
 innerHTML=xmlHttp.responseText;
 } 
} 

function GetXmlHttpObject()
{ 
var objXMLHttp=null
if (window.XMLHttpRequest)
 {
 objXMLHttp=new XMLHttpRequest()
 }
else if (window.ActiveXObject)
 {
 objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
 }
return objXMLHttp
}

例子解釋?zhuān)?/span>

stateChanged() 和 GetXmlHttpObject 函數(shù)與 PHP 和 AJAX 請(qǐng)求 這一節(jié)中的例子相同。

getVote() 函數(shù)

當(dāng)用戶(hù)在 HTML 表單中選擇 "yes" 或 "no" 時(shí),該函數(shù)就會(huì)執(zhí)行。

  1. 定義發(fā)送到服務(wù)器的 url (文件名)
  2. 向 url 添加參數(shù) (vote),參數(shù)中帶有輸入字段的內(nèi)容
  3. 添加一個(gè)隨機(jī)數(shù),以防止服務(wù)器使用緩存的文件
  4. 調(diào)用 GetXmlHttpObject 函數(shù)來(lái)創(chuàng)建 XMLHTTP 對(duì)象,并告知該對(duì)象當(dāng)觸發(fā)一個(gè)變化時(shí)執(zhí)行 stateChanged 函數(shù)
  5. 用給定的 url 來(lái)打開(kāi) XMLHTTP 對(duì)象
  6. 向服務(wù)器發(fā)送 HTTP 請(qǐng)求

PHP 頁(yè)面

由 JavaScript 代碼調(diào)用的服務(wù)器頁(yè)面是名為 "poll_vote.php" 的一個(gè)簡(jiǎn)單的 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>

例子解釋?zhuān)?/span>

所選的值從 JavaScript 傳來(lái),然后會(huì)發(fā)生:

  1. 獲取 "poll_result.txt" 文件的內(nèi)容
  2. 把文件內(nèi)容放入變量,并向被選變量累加 1
  3. 把結(jié)果寫(xiě)入 "poll_result.txt" 文件
  4. 輸出圖形化的投票結(jié)果