如何在同一页面中通过PHP链接删除数据库记录?

时间:2017-11-21 19:20:09

标签: php html mysql

我的问题是,当我尝试通过此链接删除数据库记录时:

<?php
echo("<a href=\"./termine.php?action=edit&id=$id\">");
?>
            <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span> 
<?php   
    echo("</a>");
?>

将重新加载页面,页面为白色。请参阅下面的快照。

enter image description here

行动代码:

<?php
if (isset($_GET['action']) and $_GET['action']=="edit") {
    $editId = $_GET['id'];
    $edit = $db->prepare("UPDATE TABLE_NAME SET EDIT_FIELD = '100' WHERE ID = '" .$editId."' LIMIT 1");
}

?>

0 个答案:

没有答案