/[drupal]/contributions/sandbox/alaa/snippets/manalaa_top_20_commenters.php
ViewVC logotype

Contents of /contributions/sandbox/alaa/snippets/manalaa_top_20_commenters.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Tue Mar 21 23:28:42 2006 UTC (3 years, 8 months ago) by alaa
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
more snippets
1 <ul>
2 <?php
3 $query = "select uid,name,homepage,count(cid) as c from comments group by name,uid,homepage,mail order by c desc limit 20";
4 $result = db_query($query);
5 while ($row = db_fetch_array($result)) {
6 if ($row['uid'] != 0) {
7 $link = l($row['name'], "user/".$row['uid']);
8 } else {
9 $link = l($row['name'], $row['homepage']);
10 }
11
12 ?>
13 <li><?php echo $link;?> : <?php echo $row['c']; ?></li>
14 <?php } ?>
15 </ul>

  ViewVC Help
Powered by ViewVC 1.1.2