用php和mysql计算时间戳

时间:2013-11-22 19:15:26

标签: php mysql date

我需要一些帮助来设置一个php脚本,如果用户的IP和时间戳早于20分钟,它将重定向用户。

可能有更好的方法。我的页面请求正在运行,并且正在倾倒IP地址和日期时间。这就是我到目前为止与验证拼凑在一起的内容:

// Check IP address and Time Stamp and block access if needed

 $query = "SELECT count(`id`) AS 'count'
       FROM `visits`
       WHERE 
         `client_ip` = '".mysqli_real_escape_string($_SERVER['REMOTE_ADDR'])."'
         AND `submitted_time` > '".date('Y-m-d H:i:s',strtotime('-10 minutes'))."'
       LIMIT 1";
$result = mysqli_fetch_assoc(mysqli_query($query));

if ($result['count'] > 0) {
 echo "You have already submitted within the last hour";}
 else
 {
 header("Location: control/index1.php");

  exit;
 }

提前致谢!!

1 个答案:

答案 0 :(得分:2)

将您的位置更改为以下内容:

AND `submitted_time` > CURRENT_TIMESTAMP - INTERVAL 10 MINUTE

无需使用PHP获取当前时间戳。