PHP开发 新闻发布系统之新闻修改提交页面

创建  new_upd.php 文件

本章节需要完成的功能如下图

3.jpg

代码如下

<?php
header("content-type:text/html;charset=utf8");
$title=$_POST['title'];
$content=$_POST['content'];
$id=$_GET['id'];
$time=date("y-m-d h:i:s");
$conn=mysqli_connect("localhost","root","root","News");
mysqli_set_charset($conn,"utf8");
if($conn){
    $sql="update new set title='$title',content='$content',cre_time='$time' where id='$id'";
    $que=mysqli_query($conn,$sql);
    if($que){
        echo "<script>alert('修改成功');location.href='new_list.php';</script>";
    }else{
        echo "<script>alert('修改失败,请检查后在提交');Location.href='new_list.php';</script>";
    }
}
?>

上面的代码就可以把修改页面传过来的新数据,然后替换掉旧的数据


注意:修改用的是update


这样我们的修改功能就能完成了,下一章节,我们实现删除的功能


继续学习
||
<?php header("content-type:text/html;charset=utf8"); $title=$_POST['title']; $content=$_POST['content']; $id=$_GET['id']; $time=date("y-m-d h:i:s"); $conn=mysqli_connect("localhost","root","root","News"); mysqli_set_charset($conn,"utf8"); if($conn){ $sql="update new set title='$title',content='$content',cre_time='$time' where id='$id'"; $que=mysqli_query($conn,$sql); if($que){ echo "<script>alert('修改成功');location.href='new_list.php';</script>"; }else{ echo "<script>alert('修改失败,请检查后在提交');Location.href='new_list.php';</script>"; } } ?>
提交重置代码