View Single Post
  #1  
Old 02-06-2011, 12:03 PM
Tony's Avatar
Tony Tony is offline
I program.
 
Join Date: Jan 2011
Posts: 75
Gender: Male
Credits: 7,980
Tony is on a distinguished road
Default Adding users rank to their profiles. (EASY)

Hey guys, sorry I haven't been on in a day or two, been taking a break from programming, here's a very simple mod. Also, I'm working on a banking system, i'm about 1/3 done. wish me luck!

Profile.php

find:
PHP Code:
$avatar=@mysql_result($result,$i,"imagelocation");
    
$usersname=@mysql_result($result,$i,"username");
    
$usersgroup=@mysql_result($result,$i,"usergroup");
    
$website=@mysql_result($result,$i,"website");
    
$aim=@mysql_result($result,$i,"aim");
    
$yahoo=@mysql_result($result,$i,"yahoo");
    
$msn=@mysql_result($result,$i,"msn");
    
$membersince=@mysql_result($result,$i,"membersince"); 
add:
PHP Code:
    $avatar=@mysql_result($result,$i,"imagelocation");
    
$usersname=@mysql_result($result,$i,"username");
    
$usersgroup=@mysql_result($result,$i,"usergroup");
    
$website=@mysql_result($result,$i,"website");
    
$aim=@mysql_result($result,$i,"aim");
    
$yahoo=@mysql_result($result,$i,"yahoo");
    
$msn=@mysql_result($result,$i,"msn");
    
$membersince=@mysql_result($result,$i,"membersince");
    
$rank=@mysql_result($result,$i,"usergroup"); 
find:
PHP Code:
if($avatar == ""){
    
$avatar "This user doesn't have an avatar uploaded.";
    }
    
    if(
$website == ""){
    
$website "No Website Information Given";
    }
    else{
    
$website "<a href='".$website."' target='_blank'>".$website."</a>";
    }

    if(
$msn == ""){
    
$msn "No MSN Information Given";
    }
    
    if(
$aim == ""){
    
$aim "No AIM Information Given";
    }

    if(
$yahoo == ""){
    
$yahoo "No YIM Information Given";
    } 
add:
*note Use a switch statement if you'd prefer it.
PHP Code:
if($rank == 1){ 
    
$rank "Owner";
    }
    
    if(
$rank == 2){ 
    
$rank "Administrator";
    }
    
    if(
$rank == 3){ 
    
$rank "Registered users";
    }
    
    if(
$rank == 4){ 
    
$rank "Artist";
    } 
find:
PHP Code:
$article_title $userdisp."'s Profile:";
    
$article_content "<b><u>".$lang_basic_info."".$usersname.":</u></b><br><br>
    <img src='templates/icons/web.gif'> "
.$website."<br>
    <img src='templates/icons/aim.gif'> "
.$aim."<br>
    <img src='templates/icons/msn.gif'> "
.$msn."<br>
    <img src='templates/icons/yahoo.gif'> "
.$yahoo."<br> 
change to:
PHP Code:
    $article_title $userdisp."'s Profile:";
    
$article_content "<b><u>".$lang_basic_info."".$usersname.":</u></b><br><br><img src='templates/icons/star.gif'> ".$rank."<br />
    <img src='templates/icons/web.gif'> "
.$website."<br>
    <img src='templates/icons/aim.gif'> "
.$aim."<br>
    <img src='templates/icons/msn.gif'> "
.$msn."<br>
    <img src='templates/icons/yahoo.gif'> "
.$yahoo."<br> 
If there's an extra line break or two in there, feel free to remove it. I have more than a few mods added to the profile page, so there may be some spaces I left out by accident. (:
Reply With Quote