目录

PHP 示例 - AJAX 民意调查


AJAX 民意调查

以下示例将演示一次民意调查,其中显示结果而无需重新加载。

到目前为止您喜欢 PHP 和 AJAX 吗?

是的:
不:

示例解释 - HTML 页面

当用户选择上述选项时,将执行名为"getVote()" 的函数。该函数由 "onclick" 事件触发:

<html>
<head>
<script>
function getVote(int) {
  var xmlhttp=new XMLHttpRequest();
  xmlhttp.onreadystatechange=function() {
    if (this.readyState==4 && this.status==200) {
      document.getElementById("poll").innerHTML=this.responseText;
    }
  }
  xmlhttp.open("GET","poll_vote.html?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 对象
  • 创建当服务器响应准备好时要执行的函数
  • 将请求发送到服务器上的文件
  • 请注意,URL 中添加了一个参数(投票)(带有“是”或“否”选项的值)


PHP 文件

上面的 JavaScript 调用的服务器上的页面是一个名为 "poll_vote.html" 的 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" 票。

笔记:请记住允许您的网络服务器编辑文本文件。做不是为每个人提供访问权限,仅提供 Web 服务器 (PHP)。