0

场景是当我单击 tour_manage.php 中记录旁边的 X 图像时,这会删除由另一个名为 delete_tour.php 的 php 页面执行的记录

我已经设法将弹出框添加到 X 图像中,当我单击 X 时,出现消息框说确定删除或取消。但是,问题是当我单击确定和/或取消时,两个按钮都会删除记录。

请帮忙!

这是我得到的 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');
}
?>
4

1 回答 1

0

更新

    <a onclick="return confirm('Are you sure you want to delete this tour?')"  href="delete_tour.php?tid=<?php echo $tid ?>">aaa</a>
于 2013-04-27T01:24:30.000 回答