<?php
/** * 投票調查
* *
* */
include "islogin.php";
include "../conn/config.inc.php";
/*action操作初始化*/
if(empty($_request['action']))else
if($_request['action']=='add')elseif ($_request['action']=='insert')
if($rs&&$rs2)else
}//投票列表
elseif ($_request['action']=='polllist')
//刪除
elseif ($_request['action']=='del')";
$sql2="delete from poll_option where pollid=";
//echo $sql="delete from poll inner join poll_option on poll_option.pollid=poll.id where id=";
$rs=$db->query($sql);
$rs2=$db->query($sql2);
if($rs&&$rs2)else
}elseif ($_request['action']=='edit')";
$sql="select * from poll where id=";
$rs=$db->query($sql);
$row=$db->fetch_array($rs);
$sql2="select* from poll_option where pollid= order by id asc";
$rs2=$db->query($sql2);
$i=0;
$potion='';
while ($row2=$db->fetch_array($rs2))
$potion.="
"; }
$tpl->assign('pp',$potion);
$tpl->assign('post',$row);
$tpl->assign('tmess','更新投票');
$tpl->assign('submitbutton','更新');
$tpl->assign('act','update');
$tpl->display('admin/editpoll.tpl');
}//更新投票資訊
elseif ($_request['action']=='update')',des='',addtime='' where id=''";
$rs=$db->query($sql);
foreach ($poll as $k=> $v)' where id='' and pollid= ";
$rs2=$db->query($sql2);
}if($rs&&$rs2)else
}//**********====投票相關函式***************==
//獲取投票資訊
function getpoll()
return $data;
}?>
只寫了部分後續會貼出來,希望大家給與指教。。。。。。
PHP例項 用PHP編寫的網上調查投票系統
這是乙個簡單的投票程式,對於剛學php和朋友來說是乙個很不錯的入門程式。在這裡給大家介紹一下,希望能對朋友們有所幫助。該系統是由以下四個檔案組成的 有html調查表單的survey.htm,實現調查功能的survey.php,記錄調查專案的data.txt和記錄調查結果的survey.txt.其中d...
PHP 練習 投票
練習 投票 一 題目要求 二 做法 建立資料庫 表名 diaoyantimu 表名 diaoyanxuanxiang 封裝類檔案 1 2class dbda335 else 364041 42else 4347 4849 50 51 5253 5455 56 首頁 1 public w3c dtd ...
PHP投票練習
1 連線資料庫查詢資料顯示在頁面中 2 將需要改變資料的主鍵值提交到處理頁面 3 處理頁面中通過主鍵值找到資料中的計數列的值,將計數列的的值加1複製給計數列 4 在另乙個頁面顯式結果 可以複製貼上執行 資料庫表 效果圖結果圖 主頁面 include dbda.class.php db new dbd...