Home  >  Article  >  php教程  >  除了Thinkphp官网很火的评论系统

除了Thinkphp官网很火的评论系统

WBOY
WBOYOriginal
2016-06-07 11:34:351362browse

这是素材火官网原创的评论系统,附带表情,内容限制、评论时间判断等小程序。评论和回复内容都是ajax加载出来的,这块你可以用静态缓存或数据缓存来减小压力。
除了Thinkphp官网很火的评论系统
评论表结构CREATE TABLE IF NOT EXISTS `sucai_comment` ( <br>   `id` int(11) NOT NULL AUTO_INCREMENT, <br>   `uid` int(11) NOT NULL, <br>   `touid` int(11) DEFAULT '0', <br>   `pid_sub` int(11) DEFAULT '0', <br>   `tid` int(11) NOT NULL, <br>   `pid` int(11) DEFAULT '0', <br>   `mtype` tinyint(1) NOT NULL, <br>   `content` text NOT NULL, <br>   `addtime` int(10) NOT NULL, <br>   PRIMARY KEY (`id`) <br> ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5560 ;素材火系统演示地址:http://www.sucaihuo.com/js/816.html

AD:真正免费,域名+虚机+企业邮箱=0元

Statement:
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