删除数据库表中的特定行

时间:2016-02-01 20:27:44

标签: php delete-row

生成的html表

Generated html table

我使用此代码生成html表。

<?php

        $username = $_SESSION['username'];
        $rows = get_info($db, $username);
        if (count($rows)){
            foreach ($rows as $row) {       
        $_SESSION['row'] = $rows;

            echo "<tr>" .
                "<td>" . $row["den"] . "</td>" .
                "<td>" . $row["chas"] . "</td>" .
                "<td>" . $row["predmet"] . "</td>" .
                "<td>" . $row["profesor"] . "</td>" .               
                "<td>" . $row["prostorija"] . "</td>" .
                "<td>" . $row["tip"] . "</td>" .
                '<td>
                    <button type="button" class="btn btn-xs btn-danger">
                        <span class="glyphicon glyphicon-trash">
                        </span>
                    </button> </td>'
                ;
            }
        }   


    ?>

如何删除特定行(如果我先点击&#34;垃圾&#34;,删除第一行)。

0 个答案:

没有答案