G'day,

I dont have a problem.

I just wanted to share a MySQL query with you guys, if you guys want to find out how many topics your users have started try this:

SELECT COUNT( * ) AS `Rows` , `poster`
FROM `topics`
GROUP BY `poster`
ORDER BY `Rows`
LIMIT 0 , 100;

Above the limit is '0, 100', 100 is how many records you want to return so make this the number of users you have.

On a forum like mine, its more about the topics than the posts.

www.smoobox.com

Hope this helps anybody looking, it worked for me.

Cheers.

MaJ.