程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 實現一個基於Ajax的調查程序

實現一個基於Ajax的調查程序

編輯:關於PHP編程

<html>
<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-size: 10pt;display:block}
.pollresult {font-size: 12pt;display:none}
-->
</style>
<?php(做為現在的主流開發語言)
 include_once("server1.server.php(做為現在的主流開發語言)"); #servidor para Xajax(動態網站靜態化)
 $xajax(動態網站靜態化)->printJavascript();
?>

</head>
<body>

<script language=javascript>
    function back() {
      document.getElementById(poll).style.display = block;
      document.getElementById(pollresult).style.display = none;
      document.getElementById(pollresult).innerHTML = ;
    }
</script> 
<div id=pollresult class=pollresult>

</div>


<?php(做為現在的主流開發語言)


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");
?>
<div id=poll class=poll>
<form id="pollForm" action="javascript:void(null);" onsubmit="onSubmit();">
   <?php(做為現在的主流開發語言) echo $poll["title"]; ?><br>
   <?php(做為現在的主流開發語言) for ($i = 0, $count = count($pollitems); $i < $count; $i++) { ?>
  <input type="radio" name="pollitem" value="<?php(做為現在的主流開發語言) echo $pollitems[$i][pollitem_id] ?>"><?php(做為現在的主流開發語言) echo $pollitems[$i][content] ?><br>
  <?php(做為現在的主流開發語言) } ?>
  <input type="hidden" name="poll_id" value="<?php(做為現在的主流開發語言) echo $poll_id; ?>">
  <input type="submit" value="enter">
</form>
<script language=javascript>
    function onSubmit() {
      xajax(動態網站靜態化)_poll(xajax(動態網站靜態化).getFormValues("pollForm"));
      document.getElementById(poll).style.display = none;
      document.getElementById(pollresult).style.display = block;
    }
</script>
</div>

</body>
</html>

服務器端

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 .="<div align=center>".$poll["title"]."</div><br>";
    for ($i = 0, $count = count($pollitems); $i < $count; $i++) {
      $tmp .="<div align=left>".$pollitems[$i][content].": ".$pollitems[$i][count]."</div>";

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved