国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

PHP - AJAX 投票

AJAX 投票

在下面的實例中,我們將演示一個投票程序,通過它,投票結(jié)果在網(wǎng)頁不進(jìn)行刷新的情況下被顯示。

<!DOCTYPE html>
 <html lang="en">
 <head>
     <meta charset="UTF-8">
     <title>PHP中文網(wǎng)(php.cn)</title>
     <script>
         function getVote(int) {
             if (window.XMLHttpRequest) {
                 // IE7+, Firefox, Chrome, Opera, Safari 執(zhí)行代碼
                 xmlhttp=new XMLHttpRequest();
             } else {
                 // IE6, IE5 執(zhí)行代碼
                 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>你喜歡 PHP 和 AJAX 嗎?</h3>
     <form>
         是:
         <input type="radio" name="vote" value="0" onclick="getVote(this.value)">
         <br>否:
         <input type="radio" name="vote" value="1" onclick="getVote(this.value)">
     </form>
 </div>
 </body>
 </html>

0.png

當(dāng)用戶選擇上面的某個選項時,會執(zhí)行名為 "getVote()" 的函數(shù)。該函數(shù)由 "onclick" 事件觸發(fā)。

getVote() 函數(shù)會執(zhí)行以下步驟:

· ? 創(chuàng)建 XMLHttpRequest 對象

· ? 創(chuàng)建在服務(wù)器響應(yīng)就緒時執(zhí)行的函數(shù)

· ? 向服務(wù)器上的文件發(fā)送請求

· ? 請注意添加到 URL 末端的參數(shù)(q)(包含下拉列表的內(nèi)容)


PHP 文件 ? ? ?

上面這段通過 JavaScript 調(diào)用的服務(wù)器頁面是名為 "poll_vote.php" 的 PHP 文件:

<?php
 $vote = htmlspecialchars($_REQUEST['vote']);
 
 // 獲取文件中存儲的數(shù)據(jù)
 $filename = "poll_result.txt";
 $content = file($filename);
 
 // 將數(shù)據(jù)分割到數(shù)組中
 $array = explode("||", $content[0]);
 $yes = $array[0];
 $no = $array[1];
 
 if ($vote == 0)
 {
     $yes = $yes + 1;
 }
 
 if ($vote == 1)
 {
     $no = $no + 1;
 }
 
 // 插入投票數(shù)據(jù)
 $insertvote = $yes."||".$no;
 $fp = fopen($filename,"w");
 fputs($fp,$insertvote);
 fclose($fp);
 ?>
 
 <h2>結(jié)果:</h2>
 <table>
     <tr>
         <td>是:</td>
         <td>
   <span style="display: inline-block; background-color:green;
       width:<?php echo(100*round($yes/($no+$yes),2)); ?>px;
       height:20px;" ></span>
             <?php echo(100*round($yes/($no+$yes),2)); ?>%
         </td>
     </tr>
     <tr>
         <td>否:</td>
         <td>
   <span style="display: inline-block; background-color:red;
       width:<?php echo(100*round($no/($no+$yes),2)); ?>px;
       height:20px;"></span>
             <?php echo(100*round($no/($no+$yes),2)); ?>%
         </td>
     </tr>
 </table

當(dāng)所選的值從 JavaScript 發(fā)送到 PHP 文件時,將發(fā)生:

1.??? 獲取 "poll_result.txt" 文件的內(nèi)容

2.??? 把文件內(nèi)容放入變量,并向被選變量累加 1

3.??? 把結(jié)果寫入 "poll_result.txt" 文件

4.??? 輸出圖形化的投票結(jié)果


文本文件

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

它存儲的數(shù)據(jù)如下所示:

5||3

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

注釋:請記得只允許您的 Web 服務(wù)器來編輯該文本文件。不要讓其他人獲得訪問權(quán),除了 Web 服務(wù)器 (PHP)。


繼續(xù)學(xué)習(xí)
||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>PHP中文網(wǎng)(php.cn)</title> <script> function getVote(int) { if (window.XMLHttpRequest) { // IE7+, Firefox, Chrome, Opera, Safari 執(zhí)行代碼 xmlhttp=new XMLHttpRequest(); } else { // IE6, IE5 執(zhí)行代碼 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>你喜歡 PHP 和 AJAX 嗎?</h3> <form> 是: <input type="radio" name="vote" value="0" onclick="getVote(this.value)"> <br>否: <input type="radio" name="vote" value="1" onclick="getVote(this.value)"> </form> </div> </body> </html>
提交重置代碼