如何添加评分系统?我的博客从数据库中获取帖子。
CREATE TABLE IF NOT EXISTS `posts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`video` varchar(255) NOT NULL,
`title` longtext NOT NULL,
`text` longtext NOT NULL,
`posted_by` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
在index.php中,我使用echo对其进行调用,一切正常。
示例:
<div class="container">
<div class="row">
<div class="col-md-8">
<h1 style="color:white;" class="my-4"> My Blog
</h1>
<div class="card mb-4">
<div class="embed-responsive embed-responsive-16by9">
<iframe style="border:0;" class="embed-responsive-item" width="450" height="240" src="" allowfullscreen></iframe>
</div>
<div class="card-body">
<h2 class="card-title">Title</h2>
<p>Text</p>
</div>
<div class="card-footer text-muted">Footer</div>
</div>
答案 0 :(得分:0)
对于评级系统,请创建表格 例如 posts_rating具有列为 id为int(auto incrememt), post_id为int, user_id为int(如果适用于您的项目) 评级为int
然后,当用户希望将等级插入值提供给posts_rating表时。
要显示帖子的当前评分,请执行sql语句:
从round_rating中选择round(AVG(rating),1)作为currentRating,在post_id =“。$ post_id;