Exemple PHP - AJAX Poll


Exemple PHP - AJAX Poll

AJAX Poll
L'exemple suivant démontre un sondage dont le résultat est montré sans recharger.

Aimez-vous PHP et AJAX jusqu'ici?

Oui: 
N: 

Exemple Explication - La page HTML

Quand un utilisateur de choisir une option ci-dessus, une fonction appelée "getVote ()" est exécuté.La fonction est déclenchée par le "onclick" de l'événement:
<html>
<head>
<script type="text/javascript">
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>
Le getVote () fait ce qui suit:
  • Créer un objet XMLHttpRequest
  • Création de la fonction à exécuter lorsque la réponse du serveur est prêt
  • Envoyer la demande hors d'un fichier sur le serveur
  • Notez que d'un paramètre (vote) est ajouté à l'URL (avec la valeur de l'option Oui ou Non)

Le fichier PHP

La page sur le serveur appelé par le code JavaScript ci-dessus est un fichier PHP appelé "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>
La valeur est envoyé à partir du JavaScript, et la suivante se produit:
  1. Obtenir le contenu de la «poll_result.txt" fichier
  2. Mettez le contenu du fichier dans les variables et ajouter un à la variable sélectionnée
  3. Ecrire le résultat de la "poll_result.txt" fichier
  4. Délivrer en sortie une représentation graphique du résultat du scrutin

Le fichier texte

Le fichier texte (poll_result.txt) est l'endroit où nous stockons les données de l'enquête.
Il est stocké comme ceci:
0||0
Le premier chiffre représente le «oui» voix, le deuxième nombre représente les votes "non".
Note: N'oubliez pas de laisser votre serveur web pour éditer le fichier texte. Ne PAS donner à chacun accès, juste le serveur Web (PHP).

6 commentaires:

  1. Howdy! I could have sworn I've been to this site before but after browsing through some of the post I realized it's new to me.
    Anyways, I'm definitely delighted I found it and I'll be bookmarking and
    checking back frequently!

    Feel free to visit my website ... toenail fungus treatment

    ReplyDelete
  2. My relatives always say that I am wasting my time here at net,
    except I know I am getting know-how all the time by reading thes pleasant articles.

    compromise of 1850

    my webpage; illinois mortgage refinance

    ReplyDelete
  3. I think the admin of this web site is in fact working hard in support of his web site,
    as here every information is quality based information.


    my web blog - installer volet

    ReplyDelete
  4. My brother suggested I may like this web site.

    He used to be totally right. This post actually made my day.
    You can not imagine simply how so much time I had
    spent for this information! Thank you!

    my web-site; 411 Safety

    ReplyDelete
  5. Hi there, I discovered your website by means of Google
    even as searching for a related matter, your website got here up, it seems
    great. I have bookmarked it in my google bookmarks.
    Hello there, just changed into aware of your weblog thru Google, and found that
    it is truly informative. I am going to watch out for brussels.

    I'll be grateful when you continue this in future. Numerous other folks shall be benefited from your writing. Cheers!

    My homepage: http://Vourtimeri.com/

    ReplyDelete
  6. Oh my goodness! Incredible article dude! Many thanks, However I
    am having problems with your RSS. I don't understand the reason why I can't subscribe to
    it. Is there anybody having identical RSS problems?
    Anybody who knows the answer will you kindly respond?
    Thanks!!

    Here is my blog - serrurier

    ReplyDelete

HELLO VISITORS THANKS FOR YOUR VISIT AND COMMENT