Quote:
Today at 10:08 AM Velocd said this in Post #10
Nice idea, though for the "Newest Member: Pending" spot, I would rather omit the pending users and only show the newest member who has been email confirmed.
|
That's easy. You just need to change the query for the newest member to:
PHP Code:
$getnewestusers=$DB_site->query_first("SELECT userid,username FROM user WHERE usergroupid=2 AND userid>".($numbersmembers[max]-100). " ORDER BY userid DESC LIMIT 1");