欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

实现一个基于Ajax的调查程序

程序员文章站 2022-06-08 19:13:21
...


投票



(做为现在的主流开发语言)
include_once("server1.server.php(做为现在的主流开发语言)"); #servidor para Xajax(动态网站静态化)
$xajax(动态网站静态化)->printJavascript();
?>




(做为现在的主流开发语言)


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");
?>



(做为现在的主流开发语言) echo $poll["title"]; ?>

(做为现在的主流开发语言) for ($i = 0, $count = count($pollitems); $i
(做为现在的主流开发语言) echo $pollitems[$i][content] ?>

(做为现在的主流开发语言) } ?>





服务器端

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 $tmp .="
".$pollitems[$i][content].": ".$pollitems[$i][count]."
";