1

我有一个网站,我在用户登录后开始计时,当我停止计时器时,我将这段时间保存在数据库中,并且我有两个表

login 
----------------------
id | username | password 

table 
---------------------------------------------
user_id(referenced by id) | t_id | date | time

因此,使用这种数据库结构,当我注销时,我在数据库中获得了多个条目,所以请告诉我有关按日期存储时间的正确数据库结构以及一个日期只允许一个条目。

如果对重新设计数据库结构有任何建议,请建议我。

我想合并数据库中的时间,当我在一天内多次注销时...

4

2 回答 2

0

If So then store Login time and logout time in the table .Find the difference of all log outs and logins in the current date and finally sum up all the differences if it is greater than or equal to 9 disable login function

于 2013-06-14T05:02:22.363 回答
0
table 
---------------------------------------------
user_id(referenced by id) | login_date (datetime field) | logout_date (datetime field)
于 2013-06-14T05:16:22.910 回答