【发布时间】:2018-09-08 09:52:49
【问题描述】:
我写了一个评分系统(上/下)。用户将投票保存在数据库中:
articles (
id int not null auto_increment,
article_title varchar (100) not null,
...
vote_up int not null default '0',
vote_down int not null default '0',
vote_sum int not null default '0'
..
)
如何提高/降低成绩的百分比?你有什么想法吗?
【问题讨论】:
-
你有什么尝试吗?
-
我猜做一个简单的
vote_up / vote_sum不是这里的问题。然后怎样呢?尽量做到具体。 -
你想要这样吗:3v4l.org/8jagK
标签: php