Jump to content

mysql_query time within X minutes...


newbtophp

Recommended Posts

I want to do a flood check to check if the topic_author has posted a topic previously within the last 5 minutes.

 

I have the following columns, topic_date (which is a timestamp which i insert using time()) and topic_author (the topic author).

 

Heres what im doing currently:

 

<?php
$username = "newbtophp";
$flood_check = mysql_num_rows(mysql_query("SELECT * FROM site_topics WHERE topic_author = '{$username}' AND topic_date {IS WITHIN LAST 5 MINUTES FROM CURRENT TIME}"));

if ($flood_check > 0){
//you need to wait X more minutes to post again...

}
?>

 

Anyone can help me with the query neccesary?  :-\

Link to comment
https://forums.phpfreaks.com/topic/203312-mysql_query-time-within-x-minutes/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.