\n\n"; /* Display the number of users */ echo "\n"; echo " Users:\n"; echo " ".get_number_of_users()."\n"; echo "\n\n"; /* Display the active users in the last 30 days */ echo "\n"; echo " Users active within the last 30 days:\n"; echo " ".get_active_users_within_days(30)."\n"; echo "\n\n"; /* Display the active users in the last 60 days */ echo "\n"; echo " Users active within the last 60 days:\n"; echo " ".get_active_users_within_days(60)."\n"; echo "\n\n"; /* Display the active users in the last 90 days */ echo "\n"; echo " Users active within the last 90 days:\n"; echo " ".get_active_users_within_days(90)."\n"; echo "\n\n"; /* Display the inactive users */ echo "\n"; echo " Inactive users (not logged in since six months):\n"; echo " ".(get_number_of_users()-get_active_users_within_days(183))."\n"; echo "\n\n"; /* Display the number of comments */ echo "\n"; echo " Comments:\n"; echo " ".getNumberOfComments()."\n"; echo "\n\n"; /* Display the number of application familes */ echo "\n"; echo " Application families:\n"; echo " ".getNumberOfAppFamilies()."\n"; echo "\n\n"; /* Display the number of versions */ echo "\n"; echo " Versions:\n"; echo " ".getNumberOfVersions()."\n"; echo "\n\n"; /* Display the number of application maintainers */ echo "\n"; echo " Application maintainers:\n"; echo " ".getNumberOfMaintainers()."\n"; echo "\n\n"; /* Display the number of images */ echo "\n"; echo " Images:\n"; echo " ".getNumberOfImages()."\n"; echo "\n\n"; echo "\n\n"; echo html_frame_end(" "); apidb_footer(); ?>