Quote:
Originally Posted by rake
try this:
$cut = 60*60*24*30;
$cut = time() - $cut;
$a = $DB_site->query("SELECT COUNT(*) as count,userid,username
FROM post
WHERE dateline > $cut
GROUP BY userid
ORDER BY count DESC");
while($user = $DB_site->fetch_array($a))
{
if(in_array($user['usergroupid'],array(6,7))
{
continue;
}
.....
}
|
That doesnt seem to work at all
Thanks for the help though