drs3925 2016-06-01 06:20
浏览 137
已采纳

在复选框勾选中使用AJAX在MySQL数据库中插入数据

Before getting stuck here, I had a look at the implementation of question asked here

I tried implementing the code and wish to insert data at checkbox click inside MySQL database. It might have been done already if I was supposed to insert data on form submission but I have to individually insert 8 bit data by turning their flag ON/OFF at checkbox tick.

I tried doing it, but don't know where exactly I am going wrong.

Below are the code snippets :

PHP CODE insertIntoAbbaa.php :

<!DOCTYPE html>

<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <?php

    $updateCon = mysqli_connect("192.168.0.7", "uzer", "password", "remondb");
    if (!$updateCon) {
        die("not able to cconnect" . mysqli_error());
    }
    if(isset($_POST['firstOutputData'])){

        $firstData = mysqli_escape_string($updateCon, $_POST['firstOutputData']);

        if(!$firstData){
            echo "nopes !";
        }

        $updateValue = mysqli_query($updateCon, "INSERT INTO update_abbaa(rfu_id, upadate_index, update_value) values(1,'$firstData',1)");

        if(!$updateValue){
            echo "nopes !";
        }

        mysqli_close($dbget);
        echo "Saved !";
        }
    else{
        echo " nothing happened ! ";
    }
    ?>
</body>

Below is the onclick event I am calling on checkbox tick :

HTML onclick code snippet :

<span class="toggle">
  <input type="checkbox" onclick="onOffFunction1()" id="onoff1">
  <label data-off="Off" data-on="On"></label>
</span> 

Now, I am trying to call the above mentioned function in javascript as follows :

function onOffFunction1() {
   var firstCb = document.getElementById("onoff1");

   if (firstCb.checked) {
       document.getElementById("firstBitData").innerHTML = "1";
       document.getElementById("firstBitData").style.backgroundColor = "green";
       var firstOutputData = "1";

 $.ajax({
       url: "insertIntoAbbaa.php",
       type : "POST",
       data : "firstOutputData"+firstOutputData,
       success: function(data)
         {
          alert("success !" + data);
         } 
     });

  }

The output shows me "nothing happened" message as I have written in PHP script

Please go easy on me I am a beginner !

  • 写回答

1条回答 默认 最新

  • draw62188 2016-06-01 06:33
    关注

    The error message 'Nothing happened' is caused because this check:

    if(isset($_POST['firstOutputData']))

    is false. That means there is no value inside $_POST with index 'firstOutputData'. The first place you need to look for an error like that is your AJAX call and if you pass the parameter correctly, which you don't.

    This:

    data : "firstOutputData"+firstOutputData,

    should be:

    data : {firstOutputData: firstOutputData}

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 对于这个复杂问题的解释说明
  • ¥50 三种调度算法报错 有实例
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败