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

Contents of /contributions/sandbox/alaa/snippets/manalaa_top_commented_nodes.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 <?php
2
3 $query="select c.nid, c.comment_count, n.title from node_comment_statistics c, node n where n.nid=c.nid order by c.comment_count desc limit 20";
4
5 $result=db_query($query);
6
7 echo "<ul>";
8 while ($node = db_fetch_object($result)) {
9 echo "<li>".l($node->title, "node/$node->nid")." : $node->comment_count </li>";
10 }
11 echo "</ul>";
12
13 ?>

  ViewVC Help
Powered by ViewVC 1.1.2