mysql与html的网站制作_利用html+css+mysql+php来快速的制作动态网页(以制作一个博客网站为列)...

【实例简介】

制作的一个动态博客网站,代码中给出了详细的解释,此外操作步骤也可见我的个人博客http://blog.csdn.net/mind_programmonkey,里面有详解

【实例截图】

【核心代码】

blog

└── blog

├── admin

│   ├── auser_add.php

│   ├── auser.php

│   ├── blog_add.php

│   ├── blog.php

│   ├── blog_upload.php

│   ├── check.php

│   ├── home.php

│   ├── login.php

│   ├── logout.php

│   ├── nav.inc.php

│   ├── register.php

│   └── setting.php

├── config.php

├── core

│   ├── db.class.php

│   └── input.class.php

├── header.inc.php

├── index.php

├── read.php

├── theme

│   ├── bootstrap

│   │   ├── css

│   │   │   ├── bootstrap.css

│   │   │   ├── bootstrap.css.map

│   │   │   ├── bootstrap.min.css

│   │   │   ├── bootstrap.min.css.map

│   │   │   ├── bootstrap-theme.css

│   │   │   ├── bootstrap-theme.css.map

│   │   │   ├── bootstrap-theme.min.css

│   │   │   └── bootstrap-theme.min.css.map

│   │   ├── fonts

│   │   │   ├── glyphicons-halflings-regular.eot

│   │   │   ├── glyphicons-halflings-regular.svg

│   │   │   ├── glyphicons-halflings-regular.ttf

│   │   │   ├── glyphicons-halflings-regular.woff

│   │   │   └── glyphicons-halflings-regular.woff2

│   │   └── js

│   │   ├── bootstrap.js

│   │   ├── bootstrap.min.js

│   │   └── npm.js

│   ├── js

│   │   ├── canvas-particle.js

│   │   ├── jquery-3.2.1.min.js

│   │   ├── jquery.min.js

│   │   └── login.js

│   └── simditor

│   ├── images

│   │   └── image.png

│   ├── scripts

│   │   ├── hotkeys.js

│   │   ├── hotkeys.min.js

│   │   ├── jquery.min.js

│   │   ├── module.js

│   │   ├── module.min.js

│   │   ├── simditor.js

│   │   ├── simditor.min.js

│   │   ├── uploader.js

│   │   └── uploader.min.js

│   └── styles

│   ├── editor.scss

│   ├── fonticon.scss

│   ├── simditor.css

│   └── simditor.scss

└── upfiles

└── 吕超章.jpg

14 directories, 53 files

你可能感兴趣的:(mysql与html的网站制作)