Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Mods & Themes (http://www.bvlist.com/forumdisplay.php?f=101)
-   -   Scrolling top 10 Donors (http://www.bvlist.com/showthread.php?t=6301)

nicukent 14th April 2011 01:29

Scrolling top 10 Donors
 
Add this to index where you like:

PHP Code:

<?begin_frame("Top 10 Donors");?>
    <?
    $res 
mysql_query("SELECT * FROM users WHERE donor ='yes' ORDER BY donor DESC, username LIMIT 10") or sqlerr();

    echo 
'<table cellpadding=0 width="120%"><td colspan=5><td><tr><marquee bgcolor="transparent" direction="left" behavior="scroll" scroll="continuous" scrollamount="6" vspace="5" hspace="5" align="center" width="600" height="50" style="font-size:20px;color:#1589FF;font-family:verdana;">We would like to thank the following users for supporting '.$SITENAME.' ';

 
$i=20;

    while (
$row mysql_fetch_assoc($res))  {  $id $row['id'];
    
$name $row['username'];
    
$name str_replace('_'' ' $name);
    
$name str_replace('.'' ' $name);
    
$name substr($name050);

    if(
$i==0)echo'</marquee></tr></td><td><tr><marquee scrollAmount=2 onMouseover="this.scrollAmount=0" onMouseout="this.scrollAmount=2" scrolldelay="0" direction="right">';

echo 
"<a href=\"userdetails.php?id=$id\">$name <img src=pic/star.gif border=0></a> &nbsp;<strong></strong>&nbsp; ";
    
$i++;}
    echo 
"</marquee></td></tr></table>";

    
end_frame();?>


Change font color to what you need ,and the ammount of donors.


Please Do Not "PM" Me For Personal Support!

:drink:


All times are GMT +2. The time now is 11:28.

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