修改功能的實現,我們來看以下流程圖
下面我們來看以下新增頁的程式碼:news.php
<!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="addnews.php"> 标题:<input type="text" name="title"></br></br> 内容:<textarea cols="50" rows="5" name="content"></textarea></br></br> <input type="submit" value="添加" class="sub"> </form> </div> </div> </body> </html>
如上程式碼可以看到,表單提交到addnews.php檔案中
下面我們來看以下addnews.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");//設定資料庫的字元集
然後取得表單資訊:
$title = $_POST['title'];
$content = $_POST['content'];
$messtime = time();
#在對資料庫新增之前,我們先要判斷一下,文字方塊的標題和內容是不是為空,如果為空,我們給出提示,程式碼如下:
if(empty($title)){
echo "<script>alert('請輸入標題');history.go(-1);</script>";
}elseif(empty($content)){##lt ;script>alert('請輸入內容');history.go(-1);</script>";
}
$sql = "insert into new (title,content,messtime) values('$title','$content','$messtime')"; $result =mysql_query($sql);
if($result){
# 與「新發布」) "10>s;alert /。
#完整原始碼如下:
<?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");//设置数据库的字符集 //添加操作 $title = $_POST['title']; $content = $_POST['content']; $messtime = time(); if(empty($title)){ echo "<script>alert('请输入标题');history.go(-1);</script>"; }elseif(empty($content)){ echo "<script>alert('请输入内容');history.go(-1);</script>"; }else{ $sql = "insert into new (title,content,messtime) values('$title','$content','$messtime')"; $result =mysql_query($sql); if($result){ echo "<script>alert('添加文章成功');location.href='newlist.php'</script>"; }else{ echo "<script>alert('添加文章失败');history.go(-1);</script>"; } } ?>下一節