10.7 刪除記錄

  刪除記錄的程式碼非常簡單,只要使用 DELETE 指令搭配 URL 參數篩選並刪除資料即可。請建立一個 delete.php 的檔案,輸入以下內容。
<?php
if (isset($_GET['id']) && $_GET['id'] != "") {
    require_once 'lib_mysql.php';
    $db = new Mysql;
    $db -> init('localhost', 'root', 'root', 'web_announce', '',
        'utf8mb4_general_ci');
    $index = intval($_GET['id']);
    $result = $db -> delete('news', "nIndex=$index");
}
header("Refresh: 0; url=index.php");
exit;
?>