php 关注/粉丝 每增加一个粉丝就有一个提示

WBOY
Release: 2016-06-23 14:24:07
Original
1493 people have browsed it

本帖最后由 u012376806 于 2013-10-13 19:17:32 编辑

目前实现关注是 单独一个表 结构如下

gzid  userid  followuserid  remark  in_time

gzid自增
userid 关注人id
followuserid 被关注人id
remark  备注
in_time  关注时间

如何实现 被关注后 提示增加n个粉丝呢
还有就是如何防止 用户不停的对一个用户关注和取消关注

回复讨论(解决方案)

1.被关注后 提示 是提示宿主?新数据减去某个时间段的数据 输出差额

2.一段时间内的时间戳判断操作是否允许

关注和取消关注前进行判断。

1.被关注后 提示 是提示宿主?新数据减去某个时间段的数据 输出差额

2.一段时间内的时间戳判断操作是否允许

mysql查询30分钟前的数据要怎么写查询语句啊  unix时间戳

查询当前id是1的粉丝个数
select count(*) as totalb from pd_attentions where followuserid='1' 

查询30分钟前 id是1的粉丝个数
select count(*) as totalb from pd_attentions where followuserid='1'  in_time??????

select count(*) as totalb from pd_attentions where followuserid='1' and in_time 

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template