gpt4 book ai didi

php - 从 Javascript 调用 PHP 脚本以将数据插入 mysql 数据库

转载 作者:太空宇宙 更新时间:2023-11-03 11:06:10 24 4
gpt4 key购买 nike

单击后我的 html 文件中有一个按钮 我需要完成两件事。 (将数据插入数据库并重新加载页面)所以我在 onclick 事件中调用了一个 javascript 函数。

这是 javascript 文件中的函数:

function grandFinale()
{
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("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","insert.php?q=",true);
xmlhttp.send();
document.location.reload();

}

这是上面提到的insert.php文件

<?php
$con = mysql_connect("localhost","uname","password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("SnakeDB", $con);

$sql="INSERT INTO masterTable (Name, Score) VALUES ('$_GET[name]','$_POST[txtScore1]')";

if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "1 record added";

mysql_close($con);
?>

这是 HTML 文件的一部分,其中包含我要更新到数据库的地方

<div class="modal-body">
<p>You scored :: </p><p id="txtScore1"></p>
<input type="text" placeholder="Your Name" id="name"> </div>

问题是数据库没有更新!!只有重新加载发生。请给我一个解决方案

最佳答案

据我所知,你没有将参数发送到脚本吗?!

也将名称字段附加到

xmlhttp.open("GET","insert.php?q=&name=" + encodeURIComponent(document.getElementById('name').value),true);

给定的代码没有经过测试,但应该可以这样工作。

关于php - 从 Javascript 调用 PHP 脚本以将数据插入 mysql 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11816145/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com