求PHP留言板的修改功能,修改已发表的留言。
数据库为notebook表为noteinfo留言板标题字段为title留言内容的标题为content求留言板修改功能,求源码,在线等待谢谢。。。。。...
数据库为notebook 表为noteinfo
留言板标题字段为title 留言内容的标题为content
求留言板修改功能,求源码,在线等待 谢谢。。。。。 展开
留言板标题字段为title 留言内容的标题为content
求留言板修改功能,求源码,在线等待 谢谢。。。。。 展开
1个回答
展开全部
你好,我是乌鸟heart!
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。
//哦了!
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。
//哦了!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询