Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Mods & Themes (http://www.bvlist.com/forumdisplay.php?f=109)
-   -   Top10 Torrents (http://www.bvlist.com/showthread.php?t=8923)

Chez 26th February 2013 17:21

Top10 Torrents
 
Credits to qwertyuiop

Put it in the index.php , where you want to see it

PHP Code:

  <?
    begin_main_frame
();
    
begin_frame("<h2 align=center><font color=black>Top 10 torrents</font></h2>");

    
$res mysql_query("SELECT id,seeders, leechers, name from torrents ORDER BY seeders + leechers DESC LIMIT 10") or sqlerr(__FILE____LINE__);
    if (
mysql_num_rows($res) > 0) {
    print(
"<center><table class=tableinborder border=2 cellspacing=0 cellpadding=5>\n");
    print(
"<tr><td class=\"tabletitle\"><h4>Name</h></td><td class=\"tabletitle\"><h4>Seeders</h></a></td><td class=\"tabletitle\"><h4>Lechers</h></td></tr>\n");
    while (
$arr mysql_fetch_assoc($res)) {
    
$torrname htmlspecialchars($arr['name']);
    if (
strlen($torrname) > 55)
    
$torrname substr($torrname055) . "...";
    
$ttl = (28*24) - floor((gmtime() - sql_timestamp_to_unix_timestamp($arr["added"])) / 3600);

    print(
"<tr><td class=tablea ><a href=\"details.php?id=".$arr['id']."&hit=1\" alt=\"".$arr['name']."\" title=\"".$arr['name']."\">".$torrname."</td><td class=tablea ><font color=\"red\">".$arr['seeders']."</a></td><td class=tablea >".number_format($arr['leechers'])."</td></tr>\n");
    }
    print(
"</table>\n");
    } else
    print(
"no torrents here ");

    
end_frame();
    
end_main_frame();
    
?>



All times are GMT +2. The time now is 03:16.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.