1 頁 (共 1 頁)

[問題] 統計資料顯示在首頁,該如何寫...

發表於 : 2005-02-21 15:29
9527
請問,我想將系統管理控制台內的"統計資料"顯示在首頁
文章總數\r
主題總數\r
註冊會員總數\r
平均每天發表的文章總數\r
平均每天發表的主題總數\r
平均每天註冊的會員總數

發表於 : 2005-02-23 19:53
9527
或是有沒有類似的外掛

發表於 : 2005-02-23 20:26
神川小羽
文章總數
主題總數
註冊會員總數
這些不是首頁本來就有的嗎?...... 略過
平均每天發表的文章總數
平均每天發表的主題總數
平均每天註冊的會員總數
這部分的話應該可以由admin的index.php偷一點程式碼出來用用看 應該可以吧....
打開index.php
找到\r

代碼: 選擇全部

	//
	// Start output of page
	//
之前加入\r

代碼: 選擇全部

//--------------------------------------------------
	$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);
//--------------------------------------------------
找到\r

代碼: 選擇全部

		'U_MARK_READ' => append_sid("index.$phpEx?mark=forums"))
	);
之前加入\r

代碼: 選擇全部

//-----------------------------------------
		"POSTS_PER_DAY" => $posts_per_day,
		"TOPICS_PER_DAY" => $topics_per_day,
		"USERS_PER_DAY" => $users_per_day,
//------------------------------------------
然後打開前台的風格檔index_body.tpl
找地方塞進去\r

代碼: 選擇全部

平均每天發表的文章總數: {POSTS_PER_DAY} 平均每天發表的主題總數:{TOPICS_PER_DAY}平均每天註冊的會員總數:{USERS_PER_DAY}
大概就是這樣嚕~ 你試看看吧