Home > Backend Development > PHP Tutorial > 新手在开发自己博客时如何设计数据库,文件的归类,求传授经验。

新手在开发自己博客时如何设计数据库,文件的归类,求传授经验。

WBOY
Release: 2016-06-06 20:26:34
Original
1279 people have browsed it

开始写博客的时候发现下不了手,文件不知道如何去分类,也不知道怎么去组织代码。
希望技术牛能指点一下,谢谢了 :)

回复内容:

开始写博客的时候发现下不了手,文件不知道如何去分类,也不知道怎么去组织代码。
希望技术牛能指点一下,谢谢了 :)

给你一个最简单的设计,两个表, 文章表post和分类表category。
其中一篇文章只能属于一个分类,一个分类,分类之间无上下级

post

  • id int(10) 自增主键

  • title varchar(100)

  • content text

  • category_id int(10) 分类ID

  • create_time int(10) 创建时间,UNIX时间戳

  • modify_time int(10)

category

  • id int(10) 自增主键

  • title varchar(100)

  • create_time int(10)

后面怎么扩展自己想办法吧(比如分类改造成多级,文章可以支持多个分类,加入用户支持,加入文章状态等等)

纯html不是更好?一篇文章一个文件。

直接在github上面建一个page,然后markdown写文章,git push发布。作为程序员,这样的博客你值得拥有!

最后贴一下我自己的https://lloydzhou.github.io

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template