时间:2021-07-01 10:21:17 帮助过:52人阅读
(做为现在的主流开发语言)
global $db;
$poll = $db->getRow("select * from TBL_POLL order by poll_id desc limit 1");
$poll_id = $poll["poll_id"];
$pollitems = $db->getAll("select * from TBL_POLLITEM where poll_id=$poll_id");
?>
服务器端
function poll($formData){
global $db;
$tmp="";
$objResponse = new xajax(动态网站静态化)Response();
$poll_id = $formData[poll_id];
$pollitem_id = $formData[pollitem];
if($pollitem_id > 0 && $poll_id > 0) {
$db->query("update ".TBL_POLLITEM." set count=count+1 where pollitem_id = $pollitem_id");
}
$poll = $db->getRow("select * from TBL_POLL where poll_id = $poll_id");
$pollitems = $db->getAll("select * from TBL_POLLITEM where poll_id=$poll_id");
$tmp .="".$poll["title"]."
";
for ($i = 0, $count = count($pollitems); $i < $count; $i++) {
$tmp .="".$pollitems[$i][content].": ".$pollitems[$i][count]."";
http://www.bkjia.com/PHPjc/508696.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/508696.htmlTechArticlehtml head title投票/title META http-equiv=Content-Language content=zh-cn META http-equiv=Content-Type content="text/html; charset=gb2312" style type="text/css" !-- .poll font-siz...