it will be wonderful if you create Jan toplist module to show 5-10-15 top downloaded/watched images
is it possible?


Code: Select all
<?php
echo '<table border="0" width="100">
<tr>
<td>Title</td>
<td>Hits</td>
</tr>';
$num = mysql_query("SELECT title, hits FROM `jos_phocagallery`
ORDER BY `jos_phocagallery`.`hits` DESC
LIMIT 0 , 15 ");
while ($row = mysql_fetch_array($num, MYSQL_BOTH)) {
echo ' <tr>
<td>';
echo substr($row[title],0,20);
echo '</td width="120">
<td align="right">';
echo '<b>'.$row[hits].'</b>';
echo '</td>
</tr>';
}
echo '</table>';
?>


