1

所以我刚刚发现了如何使用 ajax 发布到 PHP 文件。我想要做的是将名称和死因发布到 PHP 脚本,然后使用 Mysql 将用户添加到数据库。但是,当我按下提交按钮并运行脚本(我在页面中的其他位置并且它工作正常)时,它会将我的屏幕变成白色,并且没有任何内容添加到数据库中。

该页面托管在http://rhoiyds.com/deathnote/index.php 自己尝试一下。使用箭头键滚动到书籍的最后一页以添加内容。我也在搜索功能中使用了相同类型的脚本并且它可以工作,但添加功能却没有。请帮忙?我对这行代码有怀疑:

xmlhttp.send("name="+document.getElementById("nameadd").value+"&cod="+document.getElementById("codadd").value);

我应该有第二个 + 符号并且 & 应该在引号内吗?我仍然认为这不会使屏幕变为空白...

编辑:添加代码:

<script>
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("result").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("POST","check.php",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("name="+document.getElementById("name").value);
}
</script>
<script>
function write()
{
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("result").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("POST","write.php",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("name="+document.getElementById("nameadd").value+"&cod="+document.getElementById("codadd").value);
}
</script>
</head>

顶部脚本用于写入数据库底部脚本用于检查数据库中的名称

以下是用户输入的表单(实际上不是表单)。

    <div class="content"><div class="name">Name: <br/> Cause Of Death: </div>
<div class="cod"><textarea type="text" name="nameadd" id="nameadd" maxlength="25"
 placeholder="Input Name" required>
</textarea> <br /> <textarea type="text" name="cod" id="codadd" maxlength="130" rows="4" placeholder="Cause of Death" required>
</textarea> <br />
<button type="button" onclick="write()" return false>Submit</button></div></div>';

用于检查名称的 PHP 脚本

    /* create a prepared statement */ if ($stmt = mysqli_prepare($link, "SELECT cod FROM deathnote WHERE victim=?")) {

        /* bind parameters for markers */
        mysqli_stmt_bind_param($stmt, "s",  $_POST['name']);

        /* execute query */
        mysqli_stmt_execute($stmt);

        /* bind result variables */
        mysqli_stmt_bind_result($stmt, $cod);

        /* fetch value */
        mysqli_stmt_fetch($stmt);

      if ($cod=="") {   $cod= $_POST['name'] . " is not in the deathnote.";   }

      echo $cod;

        /* close statement */
        mysqli_stmt_close($stmt); }

    /* close connection */ mysqli_close($link);

PHP SCRIPT FOR ADDING NAMES

$sql="INSERT INTO deathnote (victim, cod)
VALUES
('$_POST[name]','$_POST[cod]')";

if (!mysqli_query($con,$sql))
  {
  die('Error: ' . mysqli_error($con));
  }


mysqli_close($con);

echo "success";
4

2 回答 2

0

您需要阻止表单实际提交。最简单的解决方法是改变它:

<button type="button" onclick="loadXMLDoc()">Submit</button>

对此:

<button type="button" onclick="loadXMLDoc(); return false">Submit</button>

可能还有其他问题,但请先尝试

于 2013-11-15T10:06:32.290 回答
0

问题不在于我的 AJAX 函数,问题在于有人使用 SQL 向我的数据库注入了 CSS 规则。:(

于 2015-01-12T06:15:01.937 回答