Returns the number of active blogs on this WPMU install or specific site.
<?php get_blog_count() ?>
<?php
$blog_count = get_blog_count();
echo 'There are currently '.$blog_count.' blogs running on this server.';
?>
Uses update_site_option() and get_site_option() to set and return value.