PHP開發新聞管理系統之修改功...登入

PHP開發新聞管理系統之修改功能的實現(下)

上節我們講到透過在資料庫中進行查詢,並把程式碼展示出來,下面我們來繼續講解修改的功能,先回顧一下上節課的完整原始碼

<?php
    header("Content-type: text/html; charset=utf-8");//设置编码
    $con =@mysql_connect("localhost","root","root") or die("数据库连接失败");
    mysql_select_db('news') or die("指定的数据库不能打开");
    mysql_query("set names utf8");//设置数据库的字符集
    $id=$_GET['id'];
    $sql="select * from new where id=$id";
    $res = mysql_query($sql);
    $row = mysql_fetch_array($res);
?>
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
    <style type="text/css">
    *{margin:0px;padding:0px;}
    body{background:#ccc;}
    .add{width:450px;height:280px;background:#eee;float:left;}
    .cont{width:500px;height:350px;margin-top:5px;margin-left:5px;}
    form{margin-left:10px;padding-top:30px;}
    .sub{width:100px;height:40px;border:1px solid #ccc;}
    .sub:hover{background:#f90}
    </style>
</head>
<body>
    <div class="add">
        <div class="cont">
            <form method="post" action="modify.php?id=<?php echo $id;?>">
                标题:<input type="text" name="title" value="<?php echo $row['title']?>"></br></br>
                内容:<textarea cols="50" rows="5" name="content"><?php echo $row['content']?></textarea></br></br>
                <input type="submit" value="修改" class="sub">
            </form>
        </div>
    </div>
</body>
</html>

如上程式碼,表單提交到  modify.php   這個文件,接下來我們來看看這個文件 

首先還是要連接資料庫

 <?php
    header("Content-type: text/html; charset=utf-8");//设置编码
    $con =@mysql_connect("localhost","root","root") or die("数据库连接失败");
    mysql_select_db('news') or die("指定的数据库不能打开");
    mysql_query("set names utf8");//设置数据库的字符集

然後取得表單資訊

 <?php 
    $id = $_GET['id'];
    $title = $_POST['title'];
    $content = $_POST['content'];
    $messtime = time();

注意:這裡我們也需要取得id  上一堂課我們是取得id  然後在資料庫中進行查詢,把資訊查詢出來,這裡我們在修改的過程中是需要條件的,例如修改那條訊息,這裡我們使用id 將會很方便

接下來寫修改語句

$sql = "update new set title='$title',content='$content',messtime='$messtime' where id='$ id'";

$res = mysql_query($sql);

修改語句寫完後判斷

    if($res){
       "<script>alert('修改成功');location.href='newlist.php';</script>";
    }else{
        echo "<script>alert#        echo "<script>alert('修改失敗;alert('修改失敗; ');history.go(-1);</script>";
    }

完整程式碼如下: 

<?php
	header("Content-type: text/html; charset=utf-8");//设置编码
	$con =@mysql_connect("localhost","root","root") or die("数据库连接失败");
	mysql_select_db('news') or die("指定的数据库不能打开");
	mysql_query("set names utf8");//设置数据库的字符集

	$id = $_GET['id'];
	$title = $_POST['title'];
	$content = $_POST['content'];
	$messtime = time();

	$sql = "update new set title='$title',content='$content',messtime='$messtime' where id='$id'";
	$res = mysql_query($sql);
	if($res){
		echo "<script>alert('修改成功');location.href='newlist.php';</script>";
	}else{
		echo "<script>alert('修改失败');history.go(-1);</script>";
	}
?>

這樣我們一個簡單功能的修改就完成了

下一節
章節課件