使用PHP无法正常删除数据库中的表行

时间:2018-01-09 20:01:29

标签: php mysql sql mysqli

所以我学习电气和计算机工程,我有一个巨大的学期项目,为拥有5个RentACar商店的公司创建数据库。 奇怪的是,该类被称为“数据库简介”,我们只学习了Sql。但是ohr项目要求我们知道 Php + Sql + Html + Bootstrap 。 我为我的数据库创建了一个基本站点,并设法完成了“商店”页面,其中包含“删除”,“编辑”,“添加”按钮。 但我未能在员工标签中取得成功...... 添加按钮有效,但删除按钮不起作用。 我在下面给你处理删除按钮的 employee.php 代码。如果您需要任何其他代码,请告诉我们! 我也可以发布stores.php中的代码,这些代码完全出于某些奇怪的原因,并且格式与此相同... 提前谢谢大家!

Pastebin Code     

    require "menu.php";
    require "connectToDB.php";

    $ID = "";
    $error = "";

    if(isset($_GET['ssn']))
    {
        $ID = $_GET['ssn'];
        if(is_numeric($ID))
        {
            $query = "DELETE FROM `employee` WHERE `SSN_emp` = $ID";

            if (!mysqli_query($mysql_connection, $query)) {
                $er = mysqli_error($mysql_connection);
                $error = "<div class='alert alert-danger alert-dismissable fade in'>
                            <strong>$er<strong>.
                        </div>";
            }
            else
            {
                mysqli_close($mysql_connection);

                header("Location:employees.php");

            }
        }else
        {
            $error = "<div class='alert alert-danger alert-dismissable fade in'>
                            <strong>Δεν υπάρχει υπάλληλος με αυτό το ΑΜΚΑ<strong>.
                    </div>";
        }
    }   

?>

<html>

<body>

<div class="container">
    <?php echo $error;?>
    <a href="employeeAdd.php" class="btn btn-primary">Add Employee</a>
        <div class="table-responsive">
            <table class="table table-striped">
                <thead>
                <tr>
                    <th>SSN Number</th>
                    <th>IRS Number</th>
                    <th>Identity Number</th>
                    <th>Last Name</th>
                    <th>First Name</th>
                    <th>Driver's License</th>
                    <th>City</th>
                    <th>Street</th>
                    <th>Street Number</th>
                    <th>Postal Code</th>
                </tr>
                </thead>

            <?php
                require 'connectToDB.php';

                $query = "SELECT * FROM employee";

                if($query_run = mysqli_query($mysql_connection,$query))
                {
                    while($row = mysqli_fetch_assoc($query_run))
                    {
                        $ssn = $row["SSN_emp"];
                        $irs = $row["IRS_emp"];
                        $id = $row["IdentityNumber"];
                        $lname = $row["LastName"];
                        $fname = $row["FirstName"];
                        $driverl = $row["DriverLicense"];
                        $city = $row["City"];
                        $street = $row["Street"];
                        $streetn = $row["StreetNumber"];
                        $postal = $row["PostalCode"];               

                        echo '<tr><td>'.$ssn.'</td><td>'.$irs.'</td><td>'.$id.'</td><td>'.$lname.'</td><td>'.$fname.'</td><td>'.$driverl.'</td><td>'.$city.'</td><td>'.$street.'</td><td>'.$streetn.'</td><td>'.$postal.'</td>';
                        echo '<td><div class="btn-group"><a class="btn btn-default" href="employees.php?id='.$ssn.'">Delete</a></div></td></tr>';
                    }
                }
                else
                {
                    echo 'Error';
                }

                mysqli_close($mysql_connection);
?>
            </table>

        </div>
    </div>
</body>

</html>

0 个答案:

没有答案