Note Submitter: [email]rob@clara.net[/email]

----

Dont forget you can always use count(*) with mysql_fetch_array() using good SQL querys..

$result = mysql_query("SELECT user,count(*) as count from users from screenshots group by user") or die(mysql_error());

$row = mysql_fetch_array($result);

$row[count] would be your count of $row[user]