当前位置:Gxlcms > PHP教程 > 实现一个基于Ajax的调查程序_PHP教程

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

时间:2021-07-01 10:21:17 帮助过:52人阅读



投票



(做为现在的主流开发语言)
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");
?>




服务器端

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]."";

www.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...

人气教程排行