Answers for "select dates that are greater than an hour from now"

0

select dates that are greater than an hour from now

$sql = "SELECT UNIX_TIMESTAMP(timetodraw) newtime, UNIX_TIMESTAMP() nowtime, game_id FROM ".$prefix."_games WHERE UNIX_TIMESTAMP(timetodraw) BETWEEN ".(time()-3600)." AND ".time();
Posted by: Guest on May-19-2021

Browse Popular Code Answers by Language