实例介绍
PHP语言编写的一款论坛程序,小巧好用!
【实例截图】
【核心代码】
6kbbs
├── admin
│ ├── ad_ajax.php
│ ├── admin.php
│ ├── ad.php
│ ├── attachment_ajax.php
│ ├── attachment.php
│ ├── collectrules
│ │ ├── admin5.php
│ │ └── k666.php
│ ├── css
│ │ ├── global.css
│ │ └── pager.css
│ ├── database.php
│ ├── forum_ajax.php
│ ├── forum.php
│ ├── images
│ │ ├── bg_1.gif
│ │ ├── bg_forum0.gif
│ │ ├── bg_forum.gif
│ │ ├── bg_login.gif
│ │ ├── ico_add.gif
│ │ ├── ico_home.gif
│ │ ├── ico_p1.gif
│ │ ├── img_adminlogo.png
│ │ ├── loading.gif
│ │ └── pager.gif
│ ├── inc
│ │ └── adminfun.php
│ ├── index.php
│ ├── login.php
│ ├── main2.php
│ ├── main_ajax.php
│ ├── main.php
│ ├── plugins_ajax.php
│ ├── plugins.php
│ ├── portalarticle_ajax.php
│ ├── portalarticle.php
│ ├── portalchannel_ajax.php
│ ├── portalchannel.php
│ ├── portalcollect.php
│ ├── system.php
│ ├── template_ajax.php
│ ├── template.php
│ ├── topic_ajax.php
│ ├── topic.php
│ ├── user_ajax.php
│ └── user.php
├── admin.php
├── agreement.php
├── ajaxadmin.php
├── ajaxmember.php
├── ajaxpublic.php
├── announce.php
├── article.php
├── attachment.php
├── cache
│ ├── ads.php
│ ├── announces.php
│ ├── credits.php
│ ├── forums.php
│ ├── groups.php
│ ├── links.php
│ ├── plugins.php
│ ├── portal_articletypes.php
│ ├── portal_channels.php
│ ├── portal_vars.php
│ ├── settings.php
│ ├── stamps.php
│ └── template.php
├── code.php
├── credits.php
├── forum.php
├── getfiles.php
├── header.php
├── httpd.ini
├── images
│ ├── bg_codebg.gif
│ ├── bg_folder_0.gif
│ ├── bg_folder_1.gif
│ ├── btn_delmsg.gif
│ ├── btn_newmsg.gif
│ ├── btn_replymsg.gif
│ ├── close.gif
│ ├── dialog_icons.gif
│ ├── group
│ │ ├── 0.gif
│ │ ├── 1.gif
│ │ ├── 201.gif
│ │ ├── 202.gif
│ │ ├── 203.gif
│ │ └── 204.gif
│ ├── ico_ad.gif
│ ├── ico_back.gif
│ ├── ico_best.gif
│ ├── ico_color.gif
│ ├── ico_fastreply.gif
│ ├── ico_go.gif
│ ├── ico_lock.gif
│ ├── ico_msgp1.gif
│ ├── ico_newmsg.gif
│ ├── icon_sex0.gif
│ ├── icon_sex1.gif
│ ├── ico_quote_left.gif
│ ├── ico_quote_right.gif
│ ├── ico_repquote.gif
│ ├── ico_rss.gif
│ ├── ico_star.gif
│ ├── ico_top.gif
│ ├── ico_unlock.gif
│ ├── ico_writemsg.gif
│ ├── img_ext_big.gif
│ ├── img_ext_small.gif
│ ├── img_signature.gif
│ ├── img_userpic_big.jpg
│ ├── img_userpic_small.jpg
│ ├── loading.gif
│ ├── logo_6kbbs88x31.gif
│ ├── logo_88x31.gif
│ ├── logo_bbs234x60.gif
│ ├── logo_portal234x60.gif
│ ├── sign
│ │ ├── correct.gif
│ │ ├── error.gif
│ │ ├── no_small.gif
│ │ └── yes_small.gif
│ ├── stamp
│ │ ├── 1.gif
│ │ ├── 2.gif
│ │ ├── 3.gif
│ │ ├── 4.gif
│ │ ├── 5.gif
│ │ └── 6.gif
│ └── topic
│ ├── alltop.gif
│ ├── announce.gif
│ ├── good.gif
│ ├── hot.gif
│ ├── lock.gif
│ ├── normal.gif
│ ├── reward.gif
│ ├── top.gif
│ └── vote.gif
├── inc
│ ├── attachment
│ │ ├── css
│ │ │ └── default.css
│ │ ├── images
│ │ │ ├── btn_close.gif
│ │ │ ├── btn.gif
│ │ │ ├── close.gif
│ │ │ └── up.png
│ │ ├── index.php
│ │ ├── js
│ │ │ ├── fileprogress.js
│ │ │ ├── handlers.js
│ │ │ ├── swfupload.js
│ │ │ ├── swfupload.queue.js
│ │ │ └── swfupload.swf
│ │ └── upload.php
│ ├── cache.php
│ ├── config.php
│ ├── db.php
│ ├── editor
│ │ ├── index.html
│ │ ├── ubb
│ │ │ ├── editor.htm
│ │ │ ├── editor.php
│ │ │ └── images
│ │ │ ├── bbcode.js
│ │ │ ├── common.js
│ │ │ ├── editor.gif
│ │ │ ├── editor.js
│ │ │ ├── faces
│ │ │ │ └── default
│ │ │ │ ├── biggrin.gif
│ │ │ │ ├── clap.gif
│ │ │ │ ├── cry.gif
│ │ │ │ ├── curse.gif
│ │ │ │ ├── dizzy.gif
│ │ │ │ ├── funk.gif
│ │ │ │ ├── handshake.gif
│ │ │ │ ├── huffy.gif
│ │ │ │ ├── hug.gif
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── lol.gif
│ │ │ │ ├── loveliness.gif
│ │ │ │ ├── mad.gif
│ │ │ │ ├── nose.gif
│ │ │ │ ├── sad.gif
│ │ │ │ ├── shocked.gif
│ │ │ │ ├── shutup.gif
│ │ │ │ ├── shy.gif
│ │ │ │ ├── sleepy.gif
│ │ │ │ ├── smile.gif
│ │ │ │ ├── sweat.gif
│ │ │ │ ├── titter.gif
│ │ │ │ ├── tongue.gif
│ │ │ │ └── victory.gif
│ │ │ ├── style.css
│ │ │ └── style_editor.css
│ │ └── ubb.php
│ ├── email.php
│ ├── fckeditor
│ │ ├── editor
│ │ │ ├── css
│ │ │ │ ├── behaviors
│ │ │ │ │ ├── disablehandles.htc
│ │ │ │ │ ├── hiddenfield.gif
│ │ │ │ │ ├── hiddenfield.htc
│ │ │ │ │ └── showtableborders.htc
│ │ │ │ ├── fck_editorarea.css
│ │ │ │ ├── fck_internal.css
│ │ │ │ ├── fck_showtableborders_gecko.css
│ │ │ │ └── images
│ │ │ │ └── fck_flashlogo.gif
│ │ │ ├── dialog
│ │ │ │ ├── common
│ │ │ │ │ └── fck_dialog_common.js
│ │ │ │ ├── fck_about
│ │ │ │ │ └── logo_fckeditor.gif
│ │ │ │ ├── fck_about.html
│ │ │ │ ├── fck_image
│ │ │ │ │ └── fck_image.js
│ │ │ │ ├── fck_image.html
│ │ │ │ ├── fck_link
│ │ │ │ │ └── fck_link.js
│ │ │ │ ├── fck_link.html
│ │ │ │ ├── fck_media
│ │ │ │ │ └── fck_media.js
│ │ │ │ ├── fck_media.html
│ │ │ │ ├── fck_source.html
│ │ │ │ └── fck_table.html
│ │ │ ├── fckblank.html
│ │ │ ├── fckdialog.html
│ │ │ ├── fckeditor.html
│ │ │ ├── images
│ │ │ │ └── spacer.gif
│ │ │ ├── js
│ │ │ │ ├── fckeditorcode_gecko_1.js
│ │ │ │ ├── fckeditorcode_gecko_2.js
│ │ │ │ ├── fckeditorcode_ie_1.js
│ │ │ │ ├── fckeditorcode_ie_2.js
│ │ │ │ └── fck_startup.js
│ │ │ ├── lang
│ │ │ │ ├── en.js
│ │ │ │ ├── fcklanguagemanager.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ └── skins
│ │ │ └── default
│ │ │ ├── fck_contextmenu.css
│ │ │ ├── fck_dialog.css
│ │ │ ├── fck_editor.css
│ │ │ ├── images
│ │ │ │ └── toolbar.start.gif
│ │ │ └── toolbar
│ │ │ ├── about.gif
│ │ │ ├── bold.gif
│ │ │ ├── image.gif
│ │ │ ├── indent.gif
│ │ │ ├── inserthorizontalrule.gif
│ │ │ ├── insertorderedlist.gif
│ │ │ ├── insertunorderedlist.gif
│ │ │ ├── italic.gif
│ │ │ ├── justifycenter.gif
│ │ │ ├── justifyleft.gif
│ │ │ ├── justifyright.gif
│ │ │ ├── link.gif
│ │ │ ├── media.gif
│ │ │ ├── outdent.gif
│ │ │ ├── preview.gif
│ │ │ ├── source.gif
│ │ │ ├── table.gif
│ │ │ ├── textcolor.gif
│ │ │ ├── underline.gif
│ │ │ ├── unlink.gif
│ │ │ └── unorderedlist.gif
│ │ ├── fckconfig.js
│ │ └── fckeditor.php
│ ├── fun.php
│ ├── init.php
│ ├── logger.php
│ ├── pager.php
│ ├── portal_class.php
│ ├── smtp_class.php
│ ├── userpicupload
│ │ ├── camera.php
│ │ ├── editor.swf
│ │ ├── loading.gif
│ │ ├── logger.txt
│ │ ├── save_userpic.php
│ │ ├── upload.php
│ │ └── userpic.php
│ ├── validationCode.php
│ ├── var.php
│ └── xml2.php
├── index.php
├── install
│ ├── ajaxinstall.php
│ ├── data.sql
│ ├── index.php
│ ├── loading.gif
│ └── title.gif
├── js
│ ├── admin.js
│ ├── ajax.js
│ ├── choosedate.js
│ ├── color.js
│ ├── iepng.js
│ ├── index.js
│ ├── jquery.js
│ ├── login.js
│ ├── member.js
│ ├── pagination.js
│ ├── password.js
│ ├── popcalendarCh.js
│ ├── popwin.js
│ ├── post.js
│ ├── public.js
│ ├── roster.js
│ ├── search.js
│ ├── signup_common.js
│ ├── signup.js
│ ├── slide.js
│ ├── tab.js
│ ├── user.js
│ └── util.js
├── js.php
├── list.php
├── loginext.php
├── login.php
├── logout.php
├── main.php
├── member.php
├── msg.php
├── online.php
├── page.php
├── portal_header.php
├── portal.php
├── postmanager.php
├── post.php
├── public.php
├── robots.txt
├── rss.php
├── search.php
├── signup.php
├── sitemap
│ ├── article.php
│ ├── forum.php
│ ├── index.php
│ ├── list.php
│ ├── topic.php
│ └── user.php
├── template
│ ├── 6kbbs
│ │ ├── admin_announces.htm
│ │ ├── admin.htm
│ │ ├── admin_postverify.htm
│ │ ├── admin_recycle.htm
│ │ ├── admin_topic.htm
│ │ ├── admin_topicverify.htm
│ │ ├── announce.htm
│ │ ├── article.htm
│ │ ├── config.xml
│ │ ├── credits.htm
│ │ ├── css.php
│ │ ├── footer.htm
│ │ ├── forum.htm
│ │ ├── global.css
│ │ ├── header.htm
│ │ ├── images
│ │ │ ├── article_dot.gif
│ │ │ ├── bg_admin.jpg
│ │ │ ├── bg_dropicon.gif
│ │ │ ├── bg_header.png
│ │ │ ├── bg_input.jpg
│ │ │ ├── bg_member.jpg
│ │ │ ├── bg_msg.jpg
│ │ │ ├── bg_portal_5.gif
│ │ │ ├── bg_portal_6.png
│ │ │ ├── bg_portal_menu.png
│ │ │ ├── bg_portal_menusplit.png
│ │ │ ├── bg_table1.gif
│ │ │ ├── bg_top1.png
│ │ │ ├── btn_befans.gif
│ │ │ ├── btn_post.gif
│ │ │ ├── btn_reply.gif
│ │ │ ├── ico_haslock.png
│ │ │ ├── ico_hasnew.png
│ │ │ ├── ico_hasnonew.png
│ │ │ ├── pager.gif
│ │ │ ├── portal_home.gif
│ │ │ ├── temp1.jpg
│ │ │ ├── temp2.jpg
│ │ │ └── temp3.jpg
│ │ ├── index.htm
│ │ ├── list.htm
│ │ ├── login.htm
│ │ ├── member_credit.htm
│ │ ├── member_details.htm
│ │ ├── member_group.htm
│ │ ├── member.htm
│ │ ├── member_msg.htm
│ │ ├── member_password.htm
│ │ ├── member_pic.htm
│ │ ├── member_post.htm
│ │ ├── msg.htm
│ │ ├── online.htm
│ │ ├── page.htm
│ │ ├── portal.css
│ │ ├── portal_footer.htm
│ │ ├── portal_header.htm
│ │ ├── portal.htm
│ │ ├── post.htm
│ │ ├── postmanager.htm
│ │ ├── preview.jpg
│ │ ├── public.htm
│ │ ├── search.htm
│ │ ├── signup.htm
│ │ ├── user.htm
│ │ ├── userlist.htm
│ │ ├── view.htm
│ │ ├── viewmsg.htm
│ │ └── viewvote.htm
│ ├── bluedream
│ │ ├── config.xml
│ │ ├── css.php
│ │ ├── footer.htm
│ │ ├── global.css
│ │ ├── header.htm
│ │ ├── images
│ │ │ ├── bg_4.gif
│ │ │ ├── bg_5.gif
│ │ │ ├── bg_6.png
│ │ │ ├── bg_7.jpg
│ │ │ ├── bg_admin.jpg
│ │ │ ├── bg_elc1.png
│ │ │ ├── bg_elc.png
│ │ │ ├── bg_forumtitle.gif
│ │ │ ├── bg_headernav2.png
│ │ │ ├── bg_headernav.png
│ │ │ ├── bg_input.jpg
│ │ │ ├── bg_member.jpg
│ │ │ ├── bg_msg.png
│ │ │ ├── bg_title1.gif
│ │ │ ├── btn_befans.gif
│ │ │ ├── btn_post.gif
│ │ │ ├── btn_reply.gif
│ │ │ ├── home.gif
│ │ │ ├── ico_haslock.png
│ │ │ ├── ico_hasnew.png
│ │ │ ├── ico_hasnonew.png
│ │ │ └── pager.gif
│ │ ├── index.htm
│ │ └── preview.jpg
│ └── 请勿删除6kbbs模板.txt
├── userlist.php
├── user.php
├── userpic.php
├── viewmsg.php
├── view.php
└── viewvote.php
48 directories, 414 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论