PHP 개발 보도 자료 시스...LOGIN

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>";
    }
}
?>

위 코드는 new_upd.php 파일을 전달할 수 있습니다. 수정된 페이지의 데이터를 삭제한 후 교체하세요. 기존 데이터를 삭제하세요


Note: 업데이트


를 사용하여 수정을 완료하세요. 다음 장에서는 삭제 기능


을 구현하겠습니다.다음 섹션
<?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>"; } } ?>
코스웨어