4
You can find this for instance in the stats block of inc blocks from the inconnu team :
Quote:
$result = $xoopsDB->query("SELECT uid from ".$xoopsDB->prefix("users")." where level='1' order by uid DESC",1);
list($numbers) = $xoopsDB->fetchRow($result);
and
$numbers contains the total number of registered users.
Just fit this to your needs
Hope this helps