Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   BT.Manager (phpMyBitTorrent) (http://www.bvlist.com/forumdisplay.php?f=23)
-   -   Right to left moving new torrents. (http://www.bvlist.com/showthread.php?t=7595)

romano1 11th February 2012 00:21

Sorry joe, dind work:
http://img195.imageshack.us/img195/9484/sshot33n.png

joeroberts 11th February 2012 00:34

sorry try this please.
PHP Code:

OpenTable("Latest Posters");
    ?>
<style type="text/css">

#marqueecontainer{
position: relative;
width: 180px; /*marquee width */
height: 800px; /*marquee height */
overflow: hidden;
padding: 2px;
padding-left: 4px;
}

</style>
<script type="text/javascript">
marqueeInit({
    uniqueid: 'mycrawler',
    style: {
        'padding': '5px',
        'width': '450px',
        'background': 'lightyellow',
        'border': '1px solid #CC3300'
    },
    inc: 8, //speed - pixel increment for each iteration of this marquee's movement
    mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
    moveatleast: 4,
    neutral: 150,
    savedirection: true
});
</script>
<div class="marquee" id="mycrawler2">
    <!--YOUR SCROLL CONTENT HERE-->
    <?php
    $news 
mysql_query("SELECT id, name, added, post_img FROM ".$db_prefix."_torrents WHERE banned = 'no' AND visible='yes' ORDER BY added DESC")or sqlerr(__FILE____LINE__);

    if (
mysql_num_rows($news) > 0) {

        print(
"<table align=center cellpadding=0 cellspacing=0 width=100% border=0>");

        while (
$row2 mysql_fetch_array($news)) {
            
$tor $row2['0'];
            
$altname $row2['1'];
            
//$date_time=get_date_time(time()-(3600*168)); // the 24 is the hours you want listed change by whatever you want
            
$orderby "ORDER BY ".$db_prefix."_torrents.added ASC"//Order
            
$where "WHERE banned = 'no' AND visible='yes' AND ".$db_prefix."_torrents.id='$tor'";

            
$res mysql_query("SELECT ".$db_prefix."_torrents.id, ".$db_prefix."_torrents.seeders, ".$db_prefix."_torrents.leechers, ".$db_prefix."_torrents.post_img, ".$db_prefix."_torrents.screen1, ".$db_prefix."_torrents.screen2, ".$db_prefix."_torrents.screen3, ".$db_prefix."_torrents.screen4, ".$db_prefix."_torrents.added, ".$db_prefix."_torrents.comments,".$db_prefix."_categories.name AS cat_name FROM ".$db_prefix."_torrents LEFT JOIN ".$db_prefix."_categories ON ".$db_prefix."_torrents.category = ".$db_prefix."_categories.id $where  $orderby")or sqlerr(__FILE____LINE__);
            
$row mysql_fetch_array($res);
            
$cat $row['cat_name'];
            
$seed =$row['seeders'];
            
$comments =$row['comments'];
            
$leech =$row['leechers'];
            
$added =$row['added'];

                        
/*$simg1 = $row['screen1'];
                        $simg2 = $row['screen2'];
                        $simg3 = $row['screen3'];
                        $simg4 = $row['screen4'];*/
                        
$img1 "<b>".$row["added"]."</b><a href='$siteurl/details.php?id=$row[id]'><img border='0' src='$row[post_img]' alt=\"$altname / $cat\" height='200' width='160' ></a><font color=\"green\"><b>Seeds</font> $seed</b>  <font color=\"red\"><b>Leech</font> $leech </b><b>Comments: <a href=\"details.php?id=".$row["id"].$hit."\">" $row["comments"] . "</a></b>";
                        
$img2 "<b>".$row["added"]."</b><a href='$siteurl/details.php?id=$row[id]'><img border='0' src='$row[post_img]' alt=\"$altname / $cat\" height='200' width='160' ></a><font color=\"green\"><b>Seeds</font> $seed</b>  <font color=\"red\"><b>Leech</font> $leech </b><b>Comments: <a href=\"details.php?id=".$row["id"].$hit."\">" $row["comments"] . "</a></b>";
            if (
$row["post_img"] != ""){
                        if (
$row["screen1"]!=''){
                print(
"<tr><td align=center>"$img1 ."<BR></td></tr>");
                        }else{
                                print(
"<tr><td align=center>"$img2 ."<BR></td></tr>");
                         }
            }
                     
        }

        print(
"</table>");

    
//}

        
        
echo'</div>';
}
CloseTable();


romano1 11th February 2012 00:39

Sorry my friend, no again:unknown:
http://img18.imageshack.us/img18/5544/sshot34g.png

joeroberts 11th February 2012 00:42

lmao I forgot that the body was for side bar But dont fear I know what to do

PHP Code:

OpenTable("Latest posters");


    
$news $db->sql_query("SELECT id, name, added, post_img FROM ".$db_prefix."_torrents WHERE banned = 'no' AND visible='yes' ORDER BY ".$db_prefix."_torrents.id DESC LIMIT 15")or sqlerr(__FILE____LINE__);

    if (
$db->sql_numrows($news) > 0) {

        print(
"<marquee scrollamount=\"3\" onmouseover=\"this.scrollAmount=0\" onmouseout=\"this.scrollAmount=3\" scrolldelay=\"0\" direction=\"right\"><table align=center cellpadding=0 cellspacing=0 width=100% border=0>\n<tr>\n");

        while (
$row2 $db->sql_fetchrow($news)) {
            
$tor $row2['0'];
            
$altname $row2['1'];
            
$orderby "ORDER BY ".$db_prefix."_torrents.id DESC"//Order
            
$limit "LIMIT 15"//Limit
            
$where "WHERE banned = 'no' AND visible='yes' AND ".$db_prefix."_torrents.id='$tor'";
            
$res $db->sql_query("SELECT ".$db_prefix."_torrents.id, ".$db_prefix."_torrents.seeders, ".$db_prefix."_torrents.leechers, ".$db_prefix."_torrents.post_img, ".$db_prefix."_torrents.screen1, ".$db_prefix."_torrents.screen2, ".$db_prefix."_torrents.screen3, ".$db_prefix."_torrents.screen4, ".$db_prefix."_torrents.added, ".$db_prefix."_categories.name AS cat_name FROM ".$db_prefix."_torrents LEFT JOIN ".$db_prefix."_categories ON ".$db_prefix."_torrents.category = ".$db_prefix."_categories.id $where  $orderby $limit")or sqlerr(__FILE____LINE__);
            
$row $db->sql_fetchrow($res);
            
$cat $row['cat_name'];
            
$seed =$row['seeders'];
            
$leech =$row['leechers'];
                        
$simg1 $row['screen1'];
                        
$simg2 $row['screen2'];
                        
$simg3 $row['screen3'];
                        
$simg4 $row['screen4'];
                        
$show2 = ($simg2 != '')? ($simg2 != 'NULL')?"<td><img src=$simg2 width=250 border=0></td>" '' :'';
                        
$show3 = ($simg3 != '')? ($simg3 != 'NULL')? "<td><img src=$simg3 width=250 border=0></td>" '' '' ;
                        
$show4 = ($simg4 != '')? ($simg4 != 'NULL')? "<td><img src=$simg4 width=250 border=0></td>" '' '' ;
            
$img1 "<a href='$siteurl/details.php?id=$row[id]'><img border='0' src='$row[post_img]' alt=\"$altname / $cat\" width='130' onmouseover=\" return overlib('<center><h1><b>screen Shots:</b></h1></center><hr><table width=100%><tr><td><img src=$simg1 width=250 border=0></td>$show2$show3$show4</tr></table>', CENTER, HEIGHT, 250, WIDTH, 300);\" onmouseout=\"return nd();\"></a><font color=\"green\"><b>S</font> $seed</b> and <font color=\"red\"><b>L</font> $leech </b>";
                        
$img2 "<a href='$siteurl/details.php?id=$row[id]'><img border='0' src='$row[post_img]' alt=\"$altname / $cat\" width='130' onmouseover=\" return overlib('<center><h1><b>screen Shots:</b></h1></center><hr><table width=100%><tr><td><center><font color=red size=4><b>Sorry no screens available</b></font></center></td></tr></table>', CENTER, HEIGHT, 250, WIDTH, 300);\" onmouseout=\"return nd();\"></a><font color=\"green\"><b>S</font> $seed</b> and <font color=\"red\"><b>L</font> $leech </b>";
            if (
$row["post_img"] != ""){
                        if (
$row["screen1"]!=''){
                print(
"<td style=\"text-align: center;\">"$img1 ."<BR>\n</td>\n");
                        }else{
                                print(
"<td style=\"text-align: center;\">"$img2 ."<BR>\n</td>\n");
                         }
            }
                     
        }

        print(
"</tr></table></marquee>");



        print(
"</div></div>");
}
CloseTable(); 


romano1 11th February 2012 00:51

Thank you joe it worked, but can it go smother, it hurt my eyes...

joeroberts 11th February 2012 00:54

Quote:

Originally Posted by romano1 (Post 33017)
Thank you joe it worked, but can it go smother, it hurt my eyes...

yea get more ram on your video card :lol:


All times are GMT +2. The time now is 02:59.

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