<?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> <div style="width:100;background-color:#000;height:10;"> <div style="background-color:#FF6600;width:<?php echo(100*round($yes/($no+$yes),2)); ?>;height:10;"></div> </div> <?php echo(100*round($yes/($no+$yes),2)); ?>% </td> </tr> <tr> <td>No:</td> <td> <div style="width:100;background-color:#000;height:10;"> <div style="background-color:#FF6600;width:<?php echo(100*round($no/($no+$yes),2)); ?>;height:10;"></div> </div> <?php echo(100*round($no/($no+$yes),2)); ?>% </td> </tr> </table>
原文:http://www.cnblogs.com/wkaifa/p/5325323.html