php如何實現留言板修改留言

2020-10-05 06:00:27

php實現留言板修改留言的方法:首先連線資料庫並選擇指定的資料庫;然後設定輸出編碼;接著記錄表單提交的修改過的留言板內容;最後執行相應的sql語句即可。

推薦:《》

資料庫為notebook表為noteinfo留言板標題欄位為title留言內容的標題為content

程式碼如下:

mysql_connect("資料庫地址","資料庫使用者","資料庫密碼"); //連結資料庫
or die("can not connect to db");
mysql_select_db("noteinfo"); //選擇noteinfo資料庫
or die("can not select the db ");
mysql_query("set names gb2312"); //設定輸出編碼
$title = $_POST['title'];//記錄表單提交的要修改的標題
$newContent = $_POST[''content];//記錄表單提交的的修改過的留言板內容(name = content)
$sql = "update noteinfo set content = '$newContent' where title = ‘$title’ "; //定義sql語句
$myquery = mysql_query($sql);//執行sql語句,也就是修改content為$newContent。
//哦了!

以上就是php如何實現留言板修改留言的詳細內容,更多請關注TW511.COM其它相關文章!