php實作投票系統的範例程式碼分析

黄舟
發布: 2023-03-16 19:08:01
原創
2435 人瀏覽過

投票分類





    
    Title

query($sql);$data_c= $result->fetch_all();?> "; }?>
{$i[1]}
登入後複製

投票介面


#



    
    Title

query($sql);$data=$result->fetch_all();?>
"; } }else{ foreach ($data as $i){ echo ""; } } ?>
名字 投票
{$i[1]}
{$i[1]}
登入後複製

投票處理


##################################################### ###



    
    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]}
登入後複製
### ####

以上是php實作投票系統的範例程式碼分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!