Thread: rank image mod
View Single Post
  #2  
Old 6th October 2009, 14:18
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Looks cool
Why not just add the wanted query info to first query rather then make a second one?
PHP Code:
$sql "SELECT seedbonus, avatar, uploaded,  downloaded, invites, can_do, level, uploaded/downloaded AS ratio FROM ".$db_prefix."_users WHERE id = '".$user->id."';";
        
$res $db->sql_query($sql);
        list (
$seedbonus$avatar$uploaded$downloaded$invites$can_do$level$ratio) = $db->sql_fetchrow($res);
        
$db->sql_freeresult($res); 
then in switch use $can_do
PHP Code:
switch ($can_do) { 
        case 
"banned": { 
        echo 
_btclassbanned
        break; 
        } 
        case 
"user": { 
        echo 
"<img src=\"themes/pmbt/pics/newbie.gif\">"
                break; 
        } 
        case 
"moderator": {        
        echo 
"<img src=\"themes/pmbt/pics/moderator.gif\">"
                break; 
        } 
        case 
"premium": { 
        echo 
"<img src=\"themes/pmbt/pics/elitemember.gif\">"
                break; 
        } 
        case 
"admin": { 
        echo 
"<img src=\"themes/pmbt/pics/Administrator.gif\">"
        break; 
        } 

can you offer up some sample icons?
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote