PHP開發(fā)企業(yè)網站教程之添加新聞資訊
點擊添加按鈕 跳轉到addne.php 頁面
我們來看下 addne.php 代碼:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>添加新聞資訊</title> <style type="text/css"> .ipt{width:180px;height:30px;border-radius:5px; outline:none;border:1px solid #eee;box-sizing:border-box;padding-left:15px;} .txt{width:250px;height:200px;} .sub{width:50px;height:20px;border:1px solid #eee;background:#eee;color:#ff7575;} </style> </head> <body> <form method="post" action="addnews.php"> 標題:<input type="text" name="title" class="ipt"> </br></br> 內容:<textarea cols="50" rows="5" name="content" class="txt"></textarea></br></br> <select name="type"> <option value="0">公司公告</option> <option value="1">公司新聞</option> </select> </br></br> <input type="submit" value="添加" class="sub"> </form> </body> </html>
看如上代碼:表單提交addnews.php 頁面
下面我們來看以下addnews.php頁面的代碼:
<?php //添加新聞資訊 require_once('conn.php'); $title=$_POST['title']; $content = $_POST['content']; $type = $_POST['type']; $newtime = time(); $sql = "insert into `news`(title,type,content,newtime) values('$title','$type','$content','$newtime')"; $res = mysql_query($sql); if($res){ echo "<script>alert('添加新聞成功');location.href='news.php';</script>"; }else{ echo "<script>alert('添加新聞失敗');location.href='news.php';</script>"; } ?>
獲取表單信息,然后添加到數(shù)據庫 表中,然后對其進行判斷,是否添加成功