📄 stats.inc.php
字号:
<?php
/*
[DISCUZ!] wap/include/stats.inc.php - wap version board stats
This is NOT a freeware, use is subject to license terms
Version: 4.0.0
Web: http://www.comsenz.com
Copyright: 2001-2005 Comsenz Technology Ltd.
Last Modified: 2005-2-28 10:15
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$discuz_action = 194;
$members = $totalmembers;
$query = $db->query("SELECT SUM(threads) AS threads, SUM(posts) AS posts FROM {$tablepre}forums WHERE status='1'");
@extract($db->fetch_array($query));
echo "<p>$lang[stats]<br /><br />\n".
"$lang[stats_members]: $members<br />\n".
"$lang[stats_threads]: $threads<br />\n".
"$lang[stats_posts]: $posts</p>\n";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -