需求分析
文章管理系統可以在網站中發布文章,查看文章並且能夠進行增刪改查操作
1,首先肯定需要資料庫保存文章分類資訊與文章詳細資料
這裡建了兩張表cms_category(文章分類)表格和cms_article(文章詳情)表格
# create table cms_category(
id int(11) not null primary key auto_increment,
name varchar(33) not null,
#sort int(11) 不 null)
#CHARSET=utf8;
create table cms_article(
id int(11) not null primary key auto_increment,
title varchar(33) 不 null,
content text not null,
author varchar(33) not null,
addtime timestamp not null,
#cid int(11) not null)#CHARSET =utf8;
#由於後面大量用到操作資料庫每次都重新寫程式碼很麻煩,所以這裡對資料庫操作進行了封裝類別的處理,採用PDO方式封裝資料庫操作類別來連接與查詢資料庫,封裝後呼叫很方便
2,需要前端html頁面展示文章(
#文章要顯示肯定會使用到分頁,這裡對分頁也進行了