Home >php教程 >php手册 >适合个人主页使用的php意见投票箱

适合个人主页使用的php意见投票箱

WBOY
WBOYOriginal
2016-06-13 10:24:011367browse

对于各位版主来说,自己的主页是否受欢迎、哪些方面受欢迎、哪些方面有待改进等等都是很有用的信息。在自己的主页上放一个意见投票箱,可以及时收集访客的意见,对网站的建设会有很大帮助。下面是一个用PHP编写的意见投票箱页面,每次投票后会在本页刷新,显示各种选票的数目和所占的百分比。

----------------------vote.php------------------------------


请您投票




if(isset($Submit)) //如果有新内容提交
{
if(!file_exists("voterec.txt"))
{
//各种选票数目都是0
$voterec = array(0, 0, 0, 0, 0);
}
else
{
//读出投票记录
$voterec = file("voterec.txt");
}
//更新投票记录
$voterec[$vote - 1] += 1;
//写入新的投票记录
$fp = fopen("voterec.txt", "w+");
$total = 0;
for($i = 0; $i {
$voterec[$i] = chop($voterec[$i]);
$total += $voterec[$i];
fwrite($fp, $voterec[$i]." ");
}
fclose($fp);
}
?>



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn