【例子介绍】PHP:博客管理系统
用PHP MySql编写的博客管理系统,附带系统配置说明,有不错的参考价值!
【源码结构】
文件清单
└── 博客管理系统
├── readme.doc
├── tmlog
│ ├── add_pic.php
│ ├── article.php
│ ├── browse_fri.php
│ ├── browse_pic.php
│ ├── browseuser.php
│ ├── cale.php
│ ├── check_comment.php
│ ├── check_file.php
│ ├── check_friend.php
│ ├── check_login.php
│ ├── check_pub.php
│ ├── checkuser.php
│ ├── comment.php
│ ├── Conn
│ │ └── conn.php
│ ├── CSS
│ │ ├── base.css
│ │ └── style.css
│ ├── data
│ │ └── db_tmlog
│ │ ├── db.opt
│ │ ├── tb_article.frm
│ │ ├── tb_article.MYD
│ │ ├── tb_article.MYI
│ │ ├── tb_filecomment.frm
│ │ ├── tb_filecomment.MYD
│ │ ├── tb_filecomment.MYI
│ │ ├── tb_friend.frm
│ │ ├── tb_friend.MYD
│ │ ├── tb_friend.MYI
│ │ ├── tb_public.frm
│ │ ├── tb_public.MYD
│ │ ├── tb_public.MYI
│ │ ├── tb_tpsc.frm
│ │ ├── tb_tpsc.MYD
│ │ ├── tb_tpsc.MYI
│ │ ├── tb_user.frm
│ │ ├── tb_user.MYD
│ │ └── tb_user.MYI
│ ├── del_comment.php
│ ├── del_file.php
│ ├── del_friend.php
│ ├── del_pub.php
│ ├── del_user.php
│ ├── file_more.php
│ ├── file.php
│ ├── f_image.php
│ ├── friend.php
│ ├── image.php
│ ├── images
│ │ ├── A_delete.gif
│ │ ├── bg.jpg
│ │ ├── checkcode
│ │ │ ├── 0.gif
│ │ │ ├── 1.gif
│ │ │ ├── 2.gif
│ │ │ ├── 3.gif
│ │ │ ├── 4.gif
│ │ │ ├── 5.gif
│ │ │ ├── 6.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ ├── 9.gif
│ │ │ └── Thumbs.db
│ │ ├── face
│ │ │ ├── 10.gif
│ │ │ ├── 1.gif
│ │ │ ├── 2.gif
│ │ │ ├── 3.gif
│ │ │ ├── 4.gif
│ │ │ ├── 5.gif
│ │ │ ├── 6.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ ├── 9.gif
│ │ │ └── Thumbs.db
│ │ ├── F_head.jpg
│ │ ├── flist.jpg
│ │ ├── footer.jpg
│ │ ├── head
│ │ │ ├── 0.gif
│ │ │ ├── 1.gif
│ │ │ ├── 2.gif
│ │ │ ├── 3.gif
│ │ │ ├── 4.gif
│ │ │ ├── 5.gif
│ │ │ └── Thumbs.db
│ │ ├── head.jpg
│ │ ├── item_out.gif
│ │ ├── item_over.gif
│ │ ├── left.jpg
│ │ ├── more.gif
│ │ ├── right.jpg
│ │ ├── Thumbs.db
│ │ └── UBB
│ │ ├── B.gif
│ │ ├── I.gif
│ │ ├── Thumbs.db
│ │ └── U.gif
│ ├── index.php
│ ├── JS
│ │ ├── check.js
│ │ ├── initcity.js
│ │ ├── menu.JS
│ │ └── UBBCode.JS
│ ├── managepub.php
│ ├── myfiles1.php
│ ├── myfiles.php
│ ├── pic_more.php
│ ├── query_friend.php
│ ├── query.php
│ ├── query_pic.php
│ ├── queryuser.php
│ ├── register_deal.php
│ ├── Register.php
│ ├── RegPro.php
│ ├── remove.php
│ ├── safe.php
│ ├── showmy.php
│ ├── show_pub.php
│ ├── submit_checkuser.php
│ ├── tptj_ok.php
│ └── yan_kz
│ ├── yan1
│ │ └── index.php
│ └── yan2
│ ├── images
│ │ └── checkcode
│ │ ├── 0.gif
│ │ ├── 1.gif
│ │ ├── 2.gif
│ │ ├── 3.gif
│ │ ├── 4.gif
│ │ ├── 5.gif
│ │ ├── 6.gif
│ │ ├── 7.gif
│ │ ├── 8.gif
│ │ ├── 9.gif
│ │ └── Thumbs.db
│ └── index.php
└── 程序运行配置说明.exe
17 directories, 127 files
评论