PHP 초보자를 위한 AJAX 투표 소개
AJAX 투표
다음 예시에서는 새로 고침 없이 투표 결과를 웹 페이지에 표시하는 투표 프로그램을 보여드리겠습니다. 상황이 표시됩니다
먼저 PHP 파일을 작성하면 코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <script> function getVote(int) { if (window.XMLHttpRequest) { // IE7+, Firefox, Chrome, Opera, Safari 执行代码 xmlhttp=new XMLHttpRequest(); } else { // 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","demo.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>
코드 설명:
getVote() 함수는 다음을 수행합니다. 단계:
XMLHttpRequest 객체 생성
서버 응답이 준비되면 실행되는 함수 생성
서버의 파일에 요청 보내기
URL(q) 끝에 추가된 매개변수를 확인하세요(드롭다운 목록의 내용 포함)
그런 다음 코드는 다음과 같습니다:
<?php $vote = htmlspecialchars($_REQUEST['vote']); // 获取文件中存储的数据 $filename = "poll_result.txt"; $content = file($filename); // 将数据分割到数组中 $array = explode("||", $content[0]); $yes = $array[0]; $no = $array[1]; if ($vote == 0){ $yes = $yes + 1; } if ($vote == 1){ $no = $no + 1; } // 插入投票数据 $insertvote = $yes."||".$no; $fp = fopen($filename,"w"); fputs($fp,$insertvote); fclose($fp); ?> <h2>结果:</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><🎜. >코드 설명: 선택한 값을 JavaScript에서 검색할 때 PHP 파일로 전송하면 어떻게 되나요? 1 "poll_result.txt" 파일의 내용을 가져옵니다. 2. 파일 내용을 변수에 넣고 선택한 변수에 1을 추가합니다3. 결과를 "poll_result.txt" 파일에 씁니다4. 투표 결과