gpt4 book ai didi

php - 在 JavaScript 警报/确认框中发送 PHP 变量

转载 作者:行者123 更新时间:2023-11-28 16:21:22 26 4
gpt4 key购买 nike

我一直在稳步进步,直到我希望用户在通过 PHP 删除行之前收到“确认”警报。本质上,一旦用户按下“确定”,我需要将行 ID 号的变量传递到“delete.php”页面。

因此 PHP 打印出一个按钮:

$clickid = $db_field['id'];
print "<form><input type='button' onclick='confirmation()' value='Delete'></form>";

还有我的 JavaScript:

function confirmation() {
var answer = confirm("You wish to delete this event?")
if (answer){
alert("Deleted")
window.location = "http://www.xxxxxxx.co.uk/admin/delete.php<? "?id=$clickid "?>";
}
else{
alert("Your Event is Not Deleted")
}
}
</script>

它显然会运行到“delete.php”页面,但不会删除任何内容,因为 $clickid 似乎没有传递给它的值。如果有人能发现我出错的地方,或者可能有用的东西,那将是很大的帮助。

最佳答案

window.location = "http://www.xxxxxxx.co.uk/admin/delete.php?id=<?php echo $clickid; ?>";

关于php - 在 JavaScript 警报/确认框中发送 PHP 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9486125/

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