Sample code analysis of php implementation of voting system

黄舟
Release: 2023-03-16 19:08:01
Original
2433 people have browsed it

Voting classification





    
    Title

query($sql);$data_c= $result->fetch_all();?> "; }?>
{$i[1]}
Copy after login

Voting interface





    
    Title

query($sql);$data=$result->fetch_all();?>
"; } }else{ foreach ($data as $i){ echo ""; } } ?>
名字 投票
{$i[1]}
{$i[1]}
Copy after login

Voting processing





    
    Title

StrQuery($sql);if($data!='0'){ echo "每个人一天只能投一次";$r=$_POST['r']; if (is_array($r)){ $s=implode(',',$r); $sq="select * from toupiao where id in ({$s})"; }else{ $sq="select * from toupiao where id = {$r}"; } $qurle=$db->Query($sq); foreach ($qurle as $i){ echo ""; } }else{ $sql = "INSERT INTO table2 VALUES (null,'{$ip}',DEFAULT)"; $squel=$db->strQuery($sql,0); if($squel){// $upsql=update table_name set votes = votes + 1 where ... //然后把数据insert into 到table2中$r=$_POST['r'];if (is_array($r)){ $s=implode(',',$r); $sql="update toupiao set count=(count+1) where id in ({$s})"; }else{$sql="update toupiao set count=(count+1) where id = {$r}"; }$data=$db->query($sql,0);if ($data){//echo "success"; if (is_array($r)){ $s=implode(',',$r); $sq="select * from toupiao where id in ({$s})"; }else{ $sq="select * from toupiao where id = {$r}"; } $qurle=$db->Query($sq); foreach ($qurle as $i){ echo ""; } } } }?>
名字 票数
{$i[1]}{$i[2]}
{$i[1]}{$i[2]}
Copy after login

The above is the detailed content of Sample code analysis of php implementation of voting system. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!