使用php从表中删除行的功能

时间:2017-09-30 20:51:49

标签: php mysql

尝试通过从生成的表中删除行来解决我的问题。我有一个名为report.php的页面,它显示了数据库中的所有行,并且有选项' delete row'。我的问题是,当我点击删除没有任何反应,它应该继续删除delete.php文件。因为现在我自己无法解决这个问题,也许你会看到我不喜欢的东西。我没有得到任何错误,所以我有点困惑。谢谢。

report.php

<!DOCTYPE>
<html>
    <head>
        <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>


    <head>
    <body>
        <?php
            require_once '../include/functions.php';
            require_once '../include/db.php';

            $htmltable = "";

            $htmltable .= "<table>
            <tr>
                <th>ID</th>
                <th>Ime</th>
                <th>Ime slavljenika</th>
                <th>Datum</th>
                <th>Poruka</th>
                <th>Vreme prijave</th>
                <th>Obrisi</th>
            </tr>";


            $prep = $db->prepare("SELECT * from prijavljeni");
            $prep->execute();
            $prijavljeni = $prep->fetchAll();

            foreach($prijavljeni as $prijavljen => $row) {

                $htmltable.= '<tr>
                    <td>'.$row['prijavljeni_id'].'</td>
                    <td>'.$row['ime'].' </td>
                    <td>'.$row['ime_slavljenika'].' </td>
                    <td>'.$row['datum'] .'</td>
                    <td>'.$row['poruka'].' </td>
                    <td>'.$row['vreme'].'</td>
                    <td><a href="delete.php?prijavljeni_id=<?php echo $prijavljeni["prijavljeni_id"]; ?>Delete</a></td>
                </tr>';
               }

                $htmltable.='</table>';

                echo $htmltable;


        ?>

        <div>
            <button onclick="return email()">Posalji</button>
            <div id="emailporuka">
            </div><br><br>
        </div>
        <p align="center"><a href="logout.php">Logout</a></p>

        <script>
            function email(){

            $.ajax({
                  type:"post",
                  url: "email.php",

                  success: function(data){
                      //window.alert(data);
                      document.getElementById("emailporuka").innerHTML = data;
                  },
                  error: function (req, status, err) {
                console.log('Something went wrong', status, err);
                }
              })
              return false;
        }
        </script>

      </body>
</html>

delete.php

<?php
    include('../include/db.php');
$prijavljeni_id=$_GET['prijavljeni_id'];
$result = $db->prepare("DELETE FROM prijavljeni WHERE prijavljeni_id= :prijavljeni_id");
$result->bindParam(':prijavljeni_id', $prijavljeni_id);
$result->execute();
header("location: izvestaj.php");

?> 

2 个答案:

答案 0 :(得分:1)

您只需在$ htmltable中更改此内容即可。 (在最后一个块中追加字符串时出错)。

          $htmltable.= '<tr>
                <td>'.$row['prijavljeni_id'].'</td>
                <td>'.$row['ime'].' </td>
                <td>'.$row['ime_slavljenika'].' </td>
                <td>'.$row['datum'] .'</td>
                <td>'.$row['poruka'].' </td>
                <td>'.$row['vreme'].'</td>
                <td><a href="delete.php?prijavljeni_id='.$prijavljeni['prijavljeni_id'].'">Delete</a></td>
            </tr>';

答案 1 :(得分:0)

更新您的代码

$result->bindParam(':prijavljeni_id', $prijavljeni_id);

$result->bindParam('prijavljeni_id', $prijavljeni_id);

记住一件事总是避免:在bindParam方法之前,我们使用:on prepareQuery来表示可替换的值。