您的位置:首页 > 编程语言 > PHP开发

My study note of PHP language(II)

2016-03-31 21:43 447 查看
The structure of website

front-end, back-end and database

front-end: mainly used to browse the data, only need to click or browse; extract information from the database to browse.

back-end: manage the data from front-end and
database; add, delete, modify, list, browse the data.

database: where the data storages.

column management

home page(index): including the columns and channels, the information of which comes from
database.

database: from the page of the back-end management.

back-end management(index.php): can jump to the adding-page, modifying-page, deleting-page and listing-page of the channels.

channel-adding page(cluAdd.php): showing the contents in the page,a Interface will appear after submitting.

data-handling page(cluAction.php): handling the interface and writing the data into the database.

channel-listing page(cluList.php): listing all of the channels;containing the function of adding and deleting.

channel-deleting page(cluDelet.php): handling the deleting operation.

channel-modifying page(cluEdit.php): handling the editing operation and showing the old data.

database-modifying(cluEditAction.php): handlig the data need to be modified and modifying the data of
database.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: