PHP:星级评分系统概念?

时间:2010-12-23 14:49:36

标签: php mysql database-design rating

我正在使用PHP / MYSQL / JQUERY。

我有一个有新闻栏目的网站。在新闻详情页面上,我想添加星级评分系统,以便用户对新闻报道进行评分。我正在使用这个jquery评级系统http://www.fyneworks.com/jquery/star-rating/

现在,我没有得到数据库结构,然后我需要用PHP编写代码。我需要为此应用什么逻辑,比如1000个人投票赞成这篇文章,有些评级为2或3或1或5.然后我应该存储(db结构)这一切以及我将计算的内容(在php代码)。

如果有人有任何显示此概念的文章,请提供。

请帮助,了解这个的逻辑和概念。

谢谢!

2 个答案:

答案 0 :(得分:3)

这是一个非常简单的mysql示例:

drop table if exists image;
create table image
(
image_id int unsigned not null auto_increment primary key,
caption varchar(255) not null,
num_votes int unsigned not null default 0,
total_score int unsigned not null default 0,
rating decimal(8,2) not null default 0
)
engine = innodb;

drop table if exists image_vote;
create table image_vote
(
image_id int unsigned not null,
user_id int unsigned not null,
score tinyint unsigned not null default 0,
primary key (image_id, user_id)
)
engine=innodb;

delimiter #

create trigger image_vote_after_ins_trig after insert on image_vote
for each row
begin
 update image set 
    num_votes = num_votes + 1,
    total_score = total_score + new.score,
    rating = total_score / num_votes  
 where 
    image_id = new.image_id;
end#

delimiter ;

insert into image (caption) values ('image 1'),('image 2'), ('image 3');

insert into image_vote (image_id, user_id, score) values
(1,1,5),(1,2,4),(1,3,3),(1,4,2),(1,5,1),
(2,1,2),(2,2,1),(2,3,4),
(3,1,4),(3,5,2);

select * from image;
select * from image_vote;

答案 1 :(得分:1)

ColorBox的制造商制作了一个名为ColorRating的jQuery / PHP评级系统。 ColorBox是一个伟大的程序,所以我认为ColorRating也是如此。我会把它检查出来,因为它可以为你节省很多麻烦:

http://colorpowered.com/colorrating/