正在删除错误的记录

时间:2013-08-25 08:14:47

标签: php html mysql sql html5

我有一个表格,用于存储项目列表的类别(例如衣服,电子产品等)。我写了一个表格,列出了数据库中的所有类别,并为用户提供了按照自己的意愿删除它们的选项。

问题:

当我尝试删除显示的第一条记录时,显示的最后一条记录被删除而不是第一条记录。当我尝试删除显示的其他记录(例如第2,第3,第4等)时,不会出现问题

示例:

+---------------------+
|        Category     |
-----------------------
| Clothes  |  Delete  | <---Tried to delete this
-----------------------
| Computers|  Delete  |
-----------------------
| Games    |  Delete  | <--This gets deleted
-----------------------

我的表格/处理代码:

    <?php
if(!isset($_SESSION))
{
    session_start();
}

if($_SESSION['auth']!=="yes")
{
    echo"You are not authorised to view this page. Please login <a href='login.php'>here</a>";
    exit();
}

?>

<?php

if($_POST['delcatsubmit']=="Delete")
{
    include("cxn.inc");
    var_dump($_POST);
    $id=$_SESSION['BizID'];
    $catid=$_POST['delcatid'];
    $delcat=$cxn->prepare("DELETE FROM `testdb`.`itemcat` WHERE `BusinessID`=:id  AND `ID`=:catid");
    $delcat->bindValue(":id",$id);
    $delcat->bindValue(":catid",$catid);
    $delcat->execute();
    echo"Category Deleted";
}

?>
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<?php
    include("cxn.inc");
    $id=$_SESSION['BizID'];
    $viewcat=$cxn->prepare("SELECT * FROM `testdb`.`itemcat` WHERE `BusinessID`= :id");
    $viewcat->bindValue(":id",$id);
    $viewcat->execute();
    echo'<form name="delcategory" id="delcategory" action="delcategory.php" method="POST" >';
        echo"<table border='1'>";
        echo"<tr>";
        echo"<td colspan='2'>";
        echo"Category";
        echo"</td>";
        echo"</tr>";
    while($getcat=$viewcat->fetch(PDO::FETCH_ASSOC))
    {

        echo"<tr>";
        echo"<td>";
        $cat=$getcat['ItemCat'];
        $delcatid=$getcat['ID'];
        echo"$cat";
        echo"</td>";
        echo"<td>";
        echo"<input type='hidden' name='delcatid' id='delcatid' value='$delcatid' />";
        echo"<input type='submit' name='delcatsubmit' id='delcatsubmit' value='Delete' />";
        echo"</td>";
        echo"</tr>";

    }
    echo"</form>";
    echo"</table>";
?>
</body>
</html>

VAR_DUMP($ _ POST)

的结果
array(2) { ["delcatid"]=> string(1) "3" ["delcatsubmit"]=> string(6) "Delete" } Category Deleted

问题:

1.当我尝试删除第一项时,为什么显示最后一项显示的ID被删除/返回?

2.我收到消息:

PHP注意:未定义的索引:delcatsubmit

当我删除一个类别。我认为这是由于$ _POST ['delcatsubmit']在第一次加载表单时未定义。有没有办法纠正/删除通知,而不是用@来压缩它?

我感谢任何意见和建议

谢谢!

P.S。我正在使用MYSQL和UNIFORM SERVER

1 个答案:

答案 0 :(得分:0)

解决了它。

我在表单的每一行使用相同的名称属性,因此它们被覆盖,并且它正在使用最后一个。

我所做的解决方法是在循环的每个迭代周围包装一个新表单。希望这可以帮助遇到同样问题的其他人。

    <!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<?php
    include("cxn.inc");
    $id=$_SESSION['BizID'];
    $viewcat=$cxn->prepare("SELECT * FROM `testdb`.`itemcat` WHERE `BusinessID`= :id");
    $viewcat->bindValue(":id",$id);
    $viewcat->execute();

        echo"<table border='1'>";
        echo"<tr>";
        echo"<td colspan='2'>";
        echo"Category";
        echo"</td>";
        echo"</tr>";
    while($getcat=$viewcat->fetch(PDO::FETCH_ASSOC))
    {

        echo"<tr>";
        echo"<td>";
        $cat=$getcat['ItemCat'];
        $delcatid=$getcat['ID'];
        echo"$cat";
        echo"</td>";
        echo"<td>";
        echo"$delcatid";
        echo"</td>";
        echo"<td>";
        echo'<form name="delcategory" id="delcategory" action="delcategory.php" method="POST" >';
        echo"<input type='hidden' name='delcatid' id='delcatid' value='$delcatid' />";
        echo"<input type='submit' name='delcatsubmit' id='delcatsubmit' value='Delete' />";
        echo"</form>";
        echo"</td>";
        echo"</tr>";

    }

    echo"</table>";
?>
</body>
</html>