PHP開發新聞管理系統之刪除功能的實現
之前我們曾講過展示頁面,修改刪除都帶了一個輸出id的語句,程式碼去下:
#刪除
可以看出,點擊刪除,跳到delnew.php 頁面
注意:刪除,我們也是要取得id,然後在資料庫進行查詢,寫刪除語句,必須要有條件,不然就不知道刪除哪條資料了
刪除功能的流程圖:
首先連接資料庫
header("Content-type: text/html; charset=utf-8");//設定編碼
$con =@mysql_connect("localhost","root","root ") or die("資料庫連線失敗");
mysql_select_db('news') or die("指定的資料庫無法開啟");
mysql_query("set names utf8");//設定資料庫的字元集
然後取得id
$id = $_GET['id'];
最後我們寫刪除語句
$sql = "delete from new where id='$id'";
$res = mysql_query($sql);
if($res){
echo ""; }else{ echo ""; } ?>