This hack either shows a list of commenters ordered by the number of comments made in a certain month (list).
Month and year can be selected with the help of dropdowns.
Or it simply shows the top commenter of a certain month (top).
Installation:
1. Copy topcommenters.php to your main CuteNews.RU directory.
2. Put this where you want to show the list:
<? $topstyle = 'list'; include('path_to/topcommenters.php'); ?>
3. Put this where you want to show the top commenter:
<? $topstyle = 'top'; $topmonth = 12; $topyear = 2006; include('path_to/topcommenters.php'); ?>
For example, use this to show the top commenter of the current month:
<? $topstyle = 'top'; $topmonth = date('m'); $topyear = date('Y'); include('path_to/topcommenters.php'); ?>
