$newestuser = $db->query_first("SELECT * FROM users ORDER BY joindate DESC LIMIT 1");echo $newestuser['username'] //username of the newest user$highestposter = $db->query_first("SELECT * FROM users ORDER BY posts ASC LIMIT 1");echo $highestposter['username'] //username of the member with the most posts