$thread_count = DB::result_first("SELECT COUNT(*) FROM ".DB::table('forum_thread')." WHERE authorid='$uid' AND dateline BETWEEN UNIX_TIMESTAMP('$month-01') AND UNIX_TIMESTAMP('$month-31')");
// 查询回帖数量
$post_count = DB::result_first("SELECT COUNT(*) FROM ".DB::table('forum_post')." WHERE authorid='$uid' AND dateline BETWEEN UNIX_TIMESTAMP('$month-01') AND UNIX_TIMESTAMP('$month-31') AND first=0");