最新的Web开发教程
 

PHP示例 - AJAX投票


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的发送,将出现以下情况:

  1. 获取的内容"poll_result.txt"文件
  2. 把文件的内容变量和添加一个到选择的变量
  3. 结果写入到"poll_result.txt"文件
  4. 输出投票结果的图形表示

文本文件

该文本文件(poll_result.txt)是我们从民调存储数据。

它存储这样的:

0||0

第一个数字代表"Yes"票,第二个数字代表了"No"的选票。

Note:请记住,让你的Web服务器来编辑文本文件。 千万NOT给任何人访问,只是web服务器(PHP)