View Single Post
  #8  
Old 5th October 2011, 20:51
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
he prolly using this one, had it donkeys years, no idea who made it but this is it lol

Code:
<?
if (!$site_config["MEMBERSONLY"] || $CURUSER["class"] >"1") { 
begin_block("Site Donors");

echo "<div align=left>";
echo "<center><strong><br>Thank You</strong></center><br>";
echo "<br/>";
$sql = "SELECT id, username, donated FROM users WHERE donated != '' ORDER BY donated DESC ";
$mysql_result=mysql_query($sql) or die (mysql_error());; 
while ($row=mysql_fetch_array($mysql_result))
{
$id = $row['id'];
$username = $row['username'];
$donated = $row['donated'];
echo "<center><strong><img src=/images/star.gif></img><a href=account-details.php?id=$id><font color=orange>".$username."</font></a><img src=/images/star.gif></img></strong></center>";
}
echo "</marquee><br>";
echo "<center><strong><br>For Your Support</strong></center><br>";
echo"<br/>";

end_block();
}
?>
:sun:
make new block named donors_block. add above code. add block to admincp

oh yea you will need the donation mod installed to so if user donates say 1 usd or gbp they will show, i had mine set to 10, anything below that they dont show. if you want the whole mod for that, holla with a dolla
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
Reply With Quote