What do i need to change to have the rank image showing?
<td style=“border-bottom:1px solid #eee; border-top:1px solid #eee;”><b>Your Rank</b></td>
<td style=“border-bottom:1px solid #eee; border-top:1px solid #eee”><?php echo $userinfo->rank;?></td>
Replace this:
<?php echo $userinfo->rank; ?>
with this:
<img src="<?php echo $userinfo->rankimage; ?>" alt="<?php echo $userinfo->rank; ?>" title="<?php echo $userinfo->rank; ?>" />
If you are using Auth to parse the data to $userinfo, it is going to work.