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() الدالة بما يلي:
- إنشاء كائن مدعوم
- إنشاء وظيفة ليتم تنفيذها عندما استجابة الملقم جاهزة
- إرسال طلب الخروج إلى ملف على الخادم
- لاحظ أن معلمة (vote) يضاف إلى URL (مع قيمة نعم أو لا خيار)
وPHP الملف
صفحة على الخادم الذي دعا إليه جافا سكريبت أعلاه هو ملف 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>
يتم إرسال القيمة من جافا سكريبت، ويحدث ما يلي:
- الحصول على محتوى "poll_result.txt" ملف
- وضع محتوى الملف في المتغيرات وإضافة إلى المتغيرات المختارة
- إرسال النتيجة إلى "poll_result.txt" ملف
- إخراج تمثيل رسومي للنتيجة استطلاع
في ملف نصي
ملف نصي (poll_result.txt) هو المكان الذي نقوم بتخزين البيانات من استطلاع للرأي.
يتم تخزينها مثل هذا:
0||0
يمثل الرقم الأول "Yes" الأصوات، ويمثل الرقم الثاني في "No" الأصوات.
Note: تذكر أن تسمح خادم الويب الخاص بك لتحرير ملف نصي. لا NOT منح حق الوصول الجميع، مجرد خادم الويب (PHP) .