I've been trying to find out how many users my site has. I can get the list of users, but not a single counter that says that many users are registered. Anyone know where I can look? I don't like counting pages and individual users.

Comments

=-=

One of the contrib modules you may want to investigate is the: Hall of Fame module. It may fit your requirements

other modules may be investigated here: http://drupal.org/taxonomy/term/119

Hackery

If you just want a quick, one time check, you could also execute this code (either by including it in a node with input format set to PHP or by using the 'Execute PHP Code' link in the Devel module):

<?php
 
print 'This site has '. db_result(db_query('SELECT COUNT(uid) FROM {users}')) .' users.';
?>

Ask and ye shall receive, apparently...

yelvington just released a new module called Usercount. If it doesn't already do what you want, you can submit a feature request.