在前一節我們創建好了資料庫和表,做了一些前期的準備工作,這一節我們就要做一個簡單添加新聞頁面
添加新聞就是向資料庫裡面添加數據,並在後面新聞列表頁面展示。
管理員在表單中填入新聞的內容,包括: 標題title, 作者author, 內容content 。
使用<form>表單<input>文字方塊輸入內容。
頁面中<textarea></textarea> 中的內容是用來得到content 欄位內容的,因為此欄位中的內容太多,所以只能用這個標籤了。
以下是簡單的新聞發佈頁的HTML程式碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>新闻发布页面</title> <style type="text/css"> span{display:inline-block; float: left; width: 55px} input[type="submit"]{margin-left: 30%;} </style> </head> <body bgcolor="#ccc"> <form name="article" method="post" action="publish.php" style=""> <h3 style="margin-left: 60px;">新闻发布页面</h3> 标 题:<input type="text" name="title" style="width:200px"/> <br/><br/> 作 者: <input type="text" name="author" style="width:200px"/> <br/><br/> <span>内 容:</span> <textarea cols=35 rows=8 name="content"></textarea><br/><br/> <input type="submit" value="发布新闻"/> </form> </body> </html>
可以把這個頁面命名為:new.php
下一節