gpt4 book ai didi

javascript - 如何在脚本中使用SQL查询

转载 作者:可可西里 更新时间:2023-11-01 07:44:21 30 4
gpt4 key购买 nike

我有一个脚本,单击按钮即可执行。它工作正常。我想在两点上运行删除查询以删除数据库条目

1)我在脚本中有一个代码,可以检查用户是否已重新加载或按下后退按钮。代码是:

 window.onbeforeunload = function(e)
{
return 'You will loose a chance of negotiation for today. Are you sure you want to exit? ';
/***Run delete query for deleting db entry***/
};

If the user reloads or goes to previous page even after the warning i would like to run delete query

2)我的脚本中包含以下部分,希望最后运行删除查询
var ticker = function() {
counter--;
var t = (counter / 60) | 0; // it is round off
digits.eq(0).text(t);
t = ((counter % 60) / 10) | 0;
digits.eq(2).text(t);
t = (counter % 60) % 10;
digits.eq(3).text(t);
if (!counter) {
clearInterval(timer);
alert('Time out !');
resetView();
}
};

问题是我不确定如何在不通知用户的情况下在脚本中编写sql查询(查询将在后端运行)。删除查询将是这样的
$sql="DELETE FROM product where id='".$id."'";
if(!mysqli_query($con,$sql))
{
"Error deleting record:" . mysqli_error($con);
}

谁能告诉我如何合并密码

我尝试使用的我的Ajax代码
 window.onbeforeunload = function(e)
{
$.ajax({
type: 'post',
url: 'test2.php',
dataType: 'json',
data: {
txt: txtbox,
hidden: hiddenTxt
},
cache: false,
console.log(returndata);
},
error: function() {
console.error('Failed to process ajax !');
}
});
};

最佳答案

您应该为此使用AJAX。看看jQuery's ajax documentation,它应该使您入门。

关于javascript - 如何在脚本中使用SQL查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30998881/

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