-2

SQLステートメントのヘルプが必要です。「いいね」に基づいた注目のユーザーシステムがありますが、ユーザーが「注目」されると、その後30日間は注目できなくなります。これは完全にphp/mysqlで記述されています。何か案は?

4

1 に答える 1

1

PHP側の擬似コード:

     $new_date = new DateTime;         
     $new_date->modify('30 day'); //set the next time they can be featured to 30 days in the future   

     while ($row = $qryResult ->fetch_assoc()) { //query table containing user, featured yes/no, date, etc
        $featured_date = new DateTime($row['featuredDate']);

     if ($featured date < $new_date) {
         echo $row['user'];
    }
  }     
于 2013-02-21T20:35:07.890 に答える