1

我有一个存储项目列表类别的表(例如衣服、电子产品等)。我编写了一个表格,列出了数据库中的所有类别,并为用户提供了根据需要删除它们的选项。

问题:

当我尝试删除显示的第一条记录时,显示的最后一条记录被删除而不是第一条。当我尝试删除显示的其他记录时(例如第 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'] 未定义。有没有办法纠正/删除通知而不是用 @ 抑制它?

我感谢任何意见和建议

谢谢!

PS 我正在使用 MYSQL 和 UNIFORM SERVER

4

1 回答 1

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>
于 2013-08-25T08:30:37.960 回答