在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → 简洁phpcms文章发布系统完整版

简洁phpcms文章发布系统完整版

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:0.40M
  • 下载次数:5
  • 浏览次数:24
  • 发布时间:2023-10-11
  • 实例类别:PHP语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 文章发布系统 cms php 完整版 PCM

实例介绍

【实例简介】简洁phpcms文章发布系统完整版
11.投票功能:可以控制在哪个页面显示,并且可以实现时间段显示投票,控制了一个IP只能投一次。 12.广告功能:支持HTML自定义,并且可投送到想要显示的页面。 13.支持内容无限分类,可详细定义自己的内容。 14.制作...

【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── weedcms
│   ├── admin.php
│   ├── authcode.php
│   ├── channel.php
│   ├── comment.php
│   ├── compiles
│   ├── content.php
│   ├── feedback.php
│   ├── images
│   │   ├── anchor.gif
│   │   ├── bcastr4.swf
│   │   ├── close.gif
│   │   ├── flash.gif
│   │   ├── flvplayer.swf
│   │   ├── icons.gif
│   │   ├── loading.gif
│   │   ├── lock.gif
│   │   ├── no.gif
│   │   ├── progress.gif
│   │   ├── progressbg.gif
│   │   ├── tag-address.gif
│   │   ├── tag-div.gif
│   │   ├── tag-h1.gif
│   │   ├── tag-h2.gif
│   │   ├── tag-h3.gif
│   │   ├── tag-h4.gif
│   │   ├── tag-h5.gif
│   │   ├── tag-h6.gif
│   │   ├── tag-p.gif
│   │   ├── tag-pre.gif
│   │   ├── unknown.gif
│   │   ├── waiting.gif
│   │   ├── water.png
│   │   ├── wmp.gif
│   │   └── yes.gif
│   ├── includes
│   │   ├── admin_config.php
│   │   ├── admin_content.php
│   │   ├── admin_default.php
│   │   ├── admin_member.php
│   │   ├── admin_other.php
│   │   ├── admin_start.php
│   │   ├── class_db.php
│   │   ├── class_smarty.php
│   │   ├── config.php
│   │   ├── front.php
│   │   ├── function.php
│   │   ├── global.php
│   │   ├── ip.dat
│   │   └── share.php
│   ├── index.php
│   ├── install.php
│   ├── languages
│   │   └── chinese
│   │       ├── admin.php
│   │       ├── front.php
│   │       └── info.txt
│   ├── member.php
│   ├── page.php
│   ├── scripts
│   │   ├── function.js
│   │   ├── jquery.calendar.js
│   │   ├── jquery.editor.js
│   │   ├── jquery.js
│   │   └── player.js
│   ├── search.php
│   ├── sitemap.php
│   ├── styles
│   │   ├── calendars.css
│   │   ├── iframe.css
│   │   └── ui.css
│   ├── templates
│   │   ├── admin
│   │   │   ├── ad_info.htm
│   │   │   ├── ad_list.htm
│   │   │   ├── admin_info.htm
│   │   │   ├── admin_list.htm
│   │   │   ├── category_info.htm
│   │   │   ├── category_list.htm
│   │   │   ├── channel_info.htm
│   │   │   ├── channel_list.htm
│   │   │   ├── config.htm
│   │   │   ├── content_comment_info.htm
│   │   │   ├── content_comment_list.htm
│   │   │   ├── content_info.htm
│   │   │   ├── content_list.htm
│   │   │   ├── feedback_info.htm
│   │   │   ├── feedback_list.htm
│   │   │   ├── left.htm
│   │   │   ├── link_info.htm
│   │   │   ├── link_list.htm
│   │   │   ├── log_list.htm
│   │   │   ├── login.htm
│   │   │   ├── member_group_info.htm
│   │   │   ├── member_group_list.htm
│   │   │   ├── member_info.htm
│   │   │   ├── member_list.htm
│   │   │   ├── menu_info.htm
│   │   │   ├── menu_list.htm
│   │   │   ├── message.htm
│   │   │   ├── online_list.htm
│   │   │   ├── page_info.htm
│   │   │   ├── page_list.htm
│   │   │   ├── start.htm
│   │   │   ├── top.htm
│   │   │   ├── vote_info.htm
│   │   │   └── vote_list.htm
│   │   └── default
│   │       ├── ajax_member_forget.html
│   │       ├── ajax_member_info.html
│   │       ├── ajax_member_login.html
│   │       ├── ajax_member_register.html
│   │       ├── channel.html
│   │       ├── channel_content_1.html
│   │       ├── channel_content_2.html
│   │       ├── channel_content_3.html
│   │       ├── channel_content_4.html
│   │       ├── channel_index_1.html
│   │       ├── channel_index_2.html
│   │       ├── channel_index_3.html
│   │       ├── channel_list_1.html
│   │       ├── channel_list_2.html
│   │       ├── channel_list_3.html
│   │       ├── channel_list_4.html
│   │       ├── channel_list_5.html
│   │       ├── content.html
│   │       ├── content_comment.html
│   │       ├── content_info.html
│   │       ├── feedback.html
│   │       ├── footer.html
│   │       ├── header.html
│   │       ├── images
│   │       │   ├── arrow.gif
│   │       │   ├── bell.png
│   │       │   ├── box_bg.png
│   │       │   ├── box_close.gif
│   │       │   ├── comment.png
│   │       │   ├── email.png
│   │       │   ├── house.png
│   │       │   ├── icon_best.png
│   │       │   ├── icon_delete.gif
│   │       │   ├── icon_edit.gif
│   │       │   ├── icon_new.gif
│   │       │   ├── icon_reply.gif
│   │       │   ├── l_ico.gif
│   │       │   ├── loading.gif
│   │       │   ├── login_submit.gif
│   │       │   ├── logo.gif
│   │       │   ├── menu_bg.gif
│   │       │   ├── more.gif
│   │       │   ├── next.gif
│   │       │   ├── nickname.png
│   │       │   ├── password.png
│   │       │   ├── pencil.png
│   │       │   ├── plus.gif
│   │       │   ├── prev.gif
│   │       │   ├── print.gif
│   │       │   ├── safecode.png
│   │       │   └── text_signature.png
│   │       ├── index.html
│   │       ├── info.txt
│   │       ├── member.html
│   │       ├── message.html
│   │       ├── page.html
│   │       ├── part_category.html
│   │       ├── part_content.html
│   │       ├── part_link.html
│   │       ├── part_other.html
│   │       ├── search.html
│   │       ├── style.css
│   │       └── thumb.png
│   ├── uploads
│   ├── vote.php
│   ├── 更新说明.txt
│   └── 源码之家说明.txt
└── 简洁phpcms文章发布系统完整版_weedcms.rar

13 directories, 163 files


实例下载地址

简洁phpcms文章发布系统完整版

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警