码迷,mamicode.com
首页 > 其他好文 > 详细

新闻修改处理页面

时间:2016-05-12 10:31:23      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:


修改页面与添加页面相同 思路一致

<?php $newsid=$_POST["newsid"]; $title=$_POST["title"]; $author=$_POST["author"]; $source=$_POST["source"]; $content=$_POST["content"]; $time=$_POST["time"]; $db=new MySQLi("localhost","root","","xinwen"); !mysqli_connect_error() or die("连接失败!");

//where 条件是根据主键进行修改 这里的newsid是主键 $sql="update news set title=‘{$title}‘,author=‘{$author}‘,source=‘{$source}‘,content=‘{$content}‘,time=‘{$time}‘ where newsid=‘{$newsid}‘"; $r=$db->query($sql); if($r) { header("location:zhuye.php"); } else { echo"修改失败"; } ?>

  

新闻修改处理页面

标签:

原文地址:http://www.cnblogs.com/yuchao19950412/p/5484539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!