Learning Drupal is the smartest thing you can do.
Node statistics and views
Have you seen the frontpage of virb.com? they have a stats-list on the page. My project is an "ad-site", free to use here in norway. If you want to create something similar to the stas-list on virb.com this is how you can do it. This tutorial is about how you can count nodes published within a certain catergory.
Comments
How do I get user stats to show
Thanks for the great tutorial. I managed to get stats to be displayed for a node but how do I get USER stats to show. I picked active user for field and filter.
Also how do you get the stat count not to link back to the node? Thanks
It depends on how you choose to show the statistics.
I found it easier to use this code http://drupalme.no/content/count-nodes-content-types and place it in a block. If you want to count registered users you can use this code:
<?php
$r=db_query("SELECT COUNT(uid) AS num_users
FROM {users} WHERE status=1;");
$n=db_fetch_array($r);
print "There are {$n['num_users']} users.";
?>










Nice one
Cool looking tutorial. Thanks for sharing.