该场景是当我点击tour_manage.php中记录旁边的X图像时,这将删除由另一个名为delete_tour.php的php页面执行的记录
我设法将弹出框添加到X图像中,当我点击X时,会出现消息框,表示可以删除或取消。但是,问题是当我点击OK和/或CANCEL时,两个按钮都会删除记录。
请帮忙!
这是我得到的2个脚本。 第一个脚本是tour_manage.php 第二个脚本是delete_tour.php
<script type="text/javascript">
function confirm() {
if(r == true) {
window.location='delete_tour.php;
} else {
window.location='tour_manage.php';
}
}
</script>
<a href="delete_tour.php?tid=<?php echo $tid ?>" onclick="return confirm('Are you sure you want to delete this tour?');" ><img src="images/delete
logo icon.png" width="15" height="15"/></a></td>`
这是delete_tour.php脚本
<?php
session_start();
include('../config.php');
$id=$_GET['tid'];
$sql=mysql_query("delete from tour where tid='$id' ");
if($sql)
{
header('location:tour_manage.php');
}
?>
答案 0 :(得分:0)
更新
<a onclick="return confirm('Are you sure you want to delete this tour?')" href="delete_tour.php?tid=<?php echo $tid ?>">aaa</a>