------解决方案-------------------- 1.就是建立一个数据库表check,里面有 member(会员),time(时间)两个字段----其实你也可以按需求添加其他字段 2.会员登录的时候,判断一下会员今天有没有登录(select * from check where member='$user' and time='$now'),如果存在,就不执行积分操作,不存在就执行积分操作,并把会员名与时间插入到今天的check表 (insert into check (`member`,`time`) values ('$user','$now')) 3.为了数据库优化,建议定期清理check表(比如一天清理一次:delete from check where time ------解决方案-------------------- 时间比较一下
------解决方案-------------------- 上面的是伪代码,只是让你看的更明白 具体的有可能需要修改一下
------解决方案-------------------- test 回复
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