[問題] 統計資料顯示在首頁,該如何寫...
發表於 : 2005-02-21 15:29
請問,我想將系統管理控制台內的"統計資料"顯示在首頁
文章總數\r
主題總數\r
註冊會員總數\r
平均每天發表的文章總數\r
平均每天發表的主題總數\r
平均每天註冊的會員總數
文章總數\r
主題總數\r
註冊會員總數\r
平均每天發表的文章總數\r
平均每天發表的主題總數\r
平均每天註冊的會員總數
這些不是首頁本來就有的嗎?...... 略過文章總數
主題總數
註冊會員總數
這部分的話應該可以由admin的index.php偷一點程式碼出來用用看 應該可以吧....平均每天發表的文章總數
平均每天發表的主題總數
平均每天註冊的會員總數
代碼: 選擇全部
//
// Start output of page
//
代碼: 選擇全部
//--------------------------------------------------
$total_posts = get_db_stat('postcount');
$total_users = get_db_stat('usercount');
$total_topics = get_db_stat('topiccount');
$start_date = create_date($board_config['default_dateformat'], $board_config['board_startdate'], $board_config['board_timezone']);
$boarddays = ( time() - $board_config['board_startdate'] ) / 86400;
$posts_per_day = sprintf("%.2f", $total_posts / $boarddays);
$topics_per_day = sprintf("%.2f", $total_topics / $boarddays);
$users_per_day = sprintf("%.2f", $total_users / $boarddays);
//--------------------------------------------------
代碼: 選擇全部
'U_MARK_READ' => append_sid("index.$phpEx?mark=forums"))
);
代碼: 選擇全部
//-----------------------------------------
"POSTS_PER_DAY" => $posts_per_day,
"TOPICS_PER_DAY" => $topics_per_day,
"USERS_PER_DAY" => $users_per_day,
//------------------------------------------
代碼: 選擇全部
平均每天發表的文章總數: {POSTS_PER_DAY} 平均每天發表的主題總數:{TOPICS_PER_DAY}平均每天註冊的會員總數:{USERS_PER_DAY}