从php创建一个表单

时间:2012-09-24 15:45:38

标签: php javascript ajax

我之前发过,但我没有得到一些明确的答案。我对此非常困惑:

我有以下html:

<body onload="showcontent()"> <!-- onload optional -->
        <div id="content"><img src="loading.gif"></div> <!-- leave img out if not onload -->
    </body>

我还有以下脚本:

function showcontent(){

  if(window.XMLHttpRequest) {
    xmlhttp = new XMLHttpRequest();
  } else {
    xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
  }

  xmlhttp.onreadystatechange = function() {
    if(xmlhttp.readyState == 1) {
        document.getElementById('content').innerHTML = "<img src='loading.gif' />";
    }
    if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
      document.getElementById('content').innerHTML = xmlhttp.responseText;
    } 
  }

  xmlhttp.open('GET', 'elsevier.php', true);
  xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
  xmlhttp.send(null);

}

在elsevier.php中我希望当一行表超过500时,显示两个按钮,告诉我是继续还是取消。如果我将此代码放在.php文件中没有任何反应.....(除了出现两个按钮)。

if(mysqli_errno($con)==1062){
      @$q55="SELECT COUNT(*) FROM testarticles";
      $result55 = mysqli_query($con, $q55);
      $row = $result55->fetch_row();
      echo '#: ', $row[0].'<br>';

      if($row[0]>=500&&$answer==false){
         echo '<form action="" method="GET">';
         echo "<label>Do you want to continue or cancel?</label>";
         echo '<input type="button" id="but1" name="but1" value="Continue">';
         echo '<input type="button" id="but2" name="but2" value="Cancel">';
         echo '</form>';

         if(isset($_GET["but1"])){
            $answer=true;
             break;
         }
          elseif(isset($_GET["but2"])){
             @$q56="DELETE * FROM journal, volume, issue, articles, testarticles WHERE import_time=$unixtimestamp";
             $result56 = mysqli_query($con, $q56);
             exit;
           }
      }

我希望在此步骤中执行php脚本停止并向我显示两个可供选择的按钮。如果我按下继续,我希望脚本从停止的位置开始执行。

有谁有任何想法?我尝试了几件事,但没有任何作用......提前谢谢你!

1 个答案:

答案 0 :(得分:0)

尝试使用input type="submit"代替input type="button",提交将(显然)提交表单,按钮只是按钮,当您点击它时,如果您没有将动作与js链接,则不会发生任何事情管他呢。